Skip to content

Commit 750757b

Browse files
author
AWS
committed
AWS Marketplace Catalog Service Update: This release enhances the ListEntities API to support ResaleAuthorizationId filter and sort for OfferEntity in the request and the addition of a ResaleAuthorizationId field in the response of OfferSummary.
1 parent 01bceed commit 750757b

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "AWS Marketplace Catalog Service",
4+
"contributor": "",
5+
"description": "This release enhances the ListEntities API to support ResaleAuthorizationId filter and sort for OfferEntity in the request and the addition of a ResaleAuthorizationId field in the response of OfferSummary."
6+
}

services/marketplacecatalog/src/main/resources/codegen-resources/service-2.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1660,6 +1660,10 @@
16601660
"shape":"OfferProductIdFilter",
16611661
"documentation":"<p>Allows filtering on the <code>ProductId</code> of an offer.</p>"
16621662
},
1663+
"ResaleAuthorizationId":{
1664+
"shape":"OfferResaleAuthorizationIdFilter",
1665+
"documentation":"<p>Allows filtering on the <code>ResaleAuthorizationId</code> of an offer.</p> <note> <p>Not all offers have a <code>ResaleAuthorizationId</code>. The response will only include offers for which you have permissions.</p> </note>"
1666+
},
16631667
"ReleaseDate":{
16641668
"shape":"OfferReleaseDateFilter",
16651669
"documentation":"<p>Allows filtering on the <code>ReleaseDate</code> of an offer.</p>"
@@ -1783,6 +1787,28 @@
17831787
},
17841788
"documentation":"<p>Allows filtering on the <code>ReleaseDate</code> of an offer with date range as input.</p>"
17851789
},
1790+
"OfferResaleAuthorizationIdFilter":{
1791+
"type":"structure",
1792+
"members":{
1793+
"ValueList":{
1794+
"shape":"OfferResaleAuthorizationIdFilterValueList",
1795+
"documentation":"<p>Allows filtering on the <code>ResaleAuthorizationId</code> of an offer with list input.</p>"
1796+
}
1797+
},
1798+
"documentation":"<p>Allows filtering on the <code>ResaleAuthorizationId</code> of an offer.</p> <note> <p>Not all offers have a <code>ResaleAuthorizationId</code>. The response will only include offers for which you have permissions.</p> </note>"
1799+
},
1800+
"OfferResaleAuthorizationIdFilterValueList":{
1801+
"type":"list",
1802+
"member":{"shape":"OfferResaleAuthorizationIdString"},
1803+
"max":10,
1804+
"min":1
1805+
},
1806+
"OfferResaleAuthorizationIdString":{
1807+
"type":"string",
1808+
"max":255,
1809+
"min":1,
1810+
"pattern":"^[a-zA-Z0-9][.a-zA-Z0-9/-]+[a-zA-Z0-9]$"
1811+
},
17861812
"OfferSort":{
17871813
"type":"structure",
17881814
"members":{
@@ -1803,6 +1829,7 @@
18031829
"EntityId",
18041830
"Name",
18051831
"ProductId",
1832+
"ResaleAuthorizationId",
18061833
"ReleaseDate",
18071834
"AvailabilityEndDate",
18081835
"BuyerAccounts",
@@ -1845,6 +1872,10 @@
18451872
"shape":"OfferProductIdString",
18461873
"documentation":"<p>The product ID of the offer.</p>"
18471874
},
1875+
"ResaleAuthorizationId":{
1876+
"shape":"OfferResaleAuthorizationIdString",
1877+
"documentation":"<p>The ResaleAuthorizationId of the offer.</p>"
1878+
},
18481879
"ReleaseDate":{
18491880
"shape":"DateTimeISO8601",
18501881
"documentation":"<p>The release date of the offer.</p>"

0 commit comments

Comments
 (0)