diff --git a/.changes/2.643.0.json b/.changes/2.643.0.json new file mode 100644 index 0000000000..65c182b146 --- /dev/null +++ b/.changes/2.643.0.json @@ -0,0 +1,7 @@ +[ + { + "type": "feature", + "category": "ServiceCatalog", + "description": "Added \"productId\" and \"portfolioId\" to responses from CreateConstraint, UpdateConstraint, ListConstraintsForPortfolio, and DescribeConstraint APIs" + } +] \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 36d117d952..2c36043992 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,10 @@ # Changelog for AWS SDK for JavaScript - + +## 2.643.0 +* feature: ServiceCatalog: Added "productId" and "portfolioId" to responses from CreateConstraint, UpdateConstraint, ListConstraintsForPortfolio, and DescribeConstraint APIs + ## 2.642.0 * bugfix: Credentials: Fix types for callback argument in get & refresh methods for Credentials to accept error optionally * bugfix: s3: createBucket mutates params argument when endpoint is configured by appending CreateBucketConfigurationon key, this side effect is now fixed diff --git a/README.md b/README.md index e2243e98bc..2f5a038df8 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ version. To use the SDK in the browser, simply add the following script tag to your HTML pages: - + 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 diff --git a/apis/servicecatalog-2015-12-10.min.json b/apis/servicecatalog-2015-12-10.min.json index e8f263f21b..dcce466cd3 100644 --- a/apis/servicecatalog-2015-12-10.min.json +++ b/apis/servicecatalog-2015-12-10.min.json @@ -2423,7 +2423,9 @@ "ConstraintId": {}, "Type": {}, "Description": {}, - "Owner": {} + "Owner": {}, + "ProductId": {}, + "PortfolioId": {} } }, "S1i": { diff --git a/apis/servicecatalog-2015-12-10.normal.json b/apis/servicecatalog-2015-12-10.normal.json index a6fb4b4783..cb6e7c9c10 100644 --- a/apis/servicecatalog-2015-12-10.normal.json +++ b/apis/servicecatalog-2015-12-10.normal.json @@ -2256,6 +2256,14 @@ "Owner": { "shape": "AccountId", "documentation": "
The owner of the constraint.
" + }, + "ProductId": { + "shape": "Id", + "documentation": "The identifier of the product the constraint applies to. Note that a constraint applies to a specific instance of a product within a certain portfolio.
" + }, + "PortfolioId": { + "shape": "Id", + "documentation": "The identifier of the portfolio the product resides in. The constraint applies only to the instance of the product that lives within this portfolio.
" } }, "documentation": "Information about a constraint.
" diff --git a/clients/acm.d.ts b/clients/acm.d.ts index 072c52ec17..71fa974df2 100644 --- a/clients/acm.d.ts +++ b/clients/acm.d.ts @@ -45,11 +45,11 @@ declare class ACM extends Service { */ exportCertificate(callback?: (err: AWSError, data: ACM.Types.ExportCertificateResponse) => void): Request