Skip to content

Commit 759cbf5

Browse files
author
AWS
committed
AWS Outposts Update: This release adds address filters for listSites
1 parent d5c0ecd commit 759cbf5

File tree

2 files changed

+37
-1
lines changed

2 files changed

+37
-1
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 Outposts",
4+
"contributor": "",
5+
"description": "This release adds address filters for listSites"
6+
}

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

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@
270270
{"shape":"AccessDeniedException"},
271271
{"shape":"InternalServerException"}
272272
],
273-
"documentation":"<p>Lists the sites for your Amazon Web Services account.</p>"
273+
"documentation":"<p>Create a list of the Outpost sites for your Amazon Web Services account. Add operating address filters to your request to return a more specific list of results. Use filters to match site city, country code, or state/region of the operating address. </p> <p>If you specify multiple filters, the filters are joined with an <code>AND</code>, and the request returns only results that match all of the specified filters.</p>"
274274
},
275275
"ListTagsForResource":{
276276
"name":"ListTagsForResource",
@@ -603,6 +603,10 @@
603603
"min":1,
604604
"pattern":"^\\S[\\S ]*$"
605605
},
606+
"CityList":{
607+
"type":"list",
608+
"member":{"shape":"City"}
609+
},
606610
"ConflictException":{
607611
"type":"structure",
608612
"members":{
@@ -638,6 +642,10 @@
638642
"min":2,
639643
"pattern":"^[A-Z]{2}$"
640644
},
645+
"CountryCodeList":{
646+
"type":"list",
647+
"member":{"shape":"CountryCode"}
648+
},
641649
"CreateOrderInput":{
642650
"type":"structure",
643651
"required":[
@@ -1205,6 +1213,24 @@
12051213
"shape":"MaxResults1000",
12061214
"location":"querystring",
12071215
"locationName":"MaxResults"
1216+
},
1217+
"OperatingAddressCountryCodeFilter":{
1218+
"shape":"CountryCodeList",
1219+
"documentation":"<p> A filter for the country code of the Outpost site. </p> <p>Filter values are case sensitive. If you specify multiple values for a filter, the values are joined with an <code>OR</code>, and the request returns all results that match any of the specified values.</p>",
1220+
"location":"querystring",
1221+
"locationName":"OperatingAddressCountryCodeFilter"
1222+
},
1223+
"OperatingAddressStateOrRegionFilter":{
1224+
"shape":"StateOrRegionList",
1225+
"documentation":"<p> A filter for the state/region of the Outpost site. </p> <p>Filter values are case sensitive. If you specify multiple values for a filter, the values are joined with an <code>OR</code>, and the request returns all results that match any of the specified values.</p>",
1226+
"location":"querystring",
1227+
"locationName":"OperatingAddressStateOrRegionFilter"
1228+
},
1229+
"OperatingAddressCityFilter":{
1230+
"shape":"CityList",
1231+
"documentation":"<p> A filter for the city of the Outpost site. </p> <p>Filter values are case sensitive. If you specify multiple values for a filter, the values are joined with an <code>OR</code>, and the request returns all results that match any of the specified values.</p>",
1232+
"location":"querystring",
1233+
"locationName":"OperatingAddressCityFilter"
12081234
}
12091235
}
12101236
},
@@ -1649,6 +1675,10 @@
16491675
"min":1,
16501676
"pattern":"^\\S[\\S ]*$"
16511677
},
1678+
"StateOrRegionList":{
1679+
"type":"list",
1680+
"member":{"shape":"StateOrRegion"}
1681+
},
16521682
"String":{
16531683
"type":"string",
16541684
"max":1000,

0 commit comments

Comments
 (0)