Skip to content

Commit

Permalink
AWS Outposts Update: This release adds address filters for listSites
Browse files Browse the repository at this point in the history
  • Loading branch information
AWS committed Mar 11, 2022
1 parent d5c0ecd commit 759cbf5
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .changes/next-release/feature-AWSOutposts-dc4e1f9.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"type": "feature",
"category": "AWS Outposts",
"contributor": "",
"description": "This release adds address filters for listSites"
}
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@
{"shape":"AccessDeniedException"},
{"shape":"InternalServerException"}
],
"documentation":"<p>Lists the sites for your Amazon Web Services account.</p>"
"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>"
},
"ListTagsForResource":{
"name":"ListTagsForResource",
Expand Down Expand Up @@ -603,6 +603,10 @@
"min":1,
"pattern":"^\\S[\\S ]*$"
},
"CityList":{
"type":"list",
"member":{"shape":"City"}
},
"ConflictException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -638,6 +642,10 @@
"min":2,
"pattern":"^[A-Z]{2}$"
},
"CountryCodeList":{
"type":"list",
"member":{"shape":"CountryCode"}
},
"CreateOrderInput":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -1205,6 +1213,24 @@
"shape":"MaxResults1000",
"location":"querystring",
"locationName":"MaxResults"
},
"OperatingAddressCountryCodeFilter":{
"shape":"CountryCodeList",
"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>",
"location":"querystring",
"locationName":"OperatingAddressCountryCodeFilter"
},
"OperatingAddressStateOrRegionFilter":{
"shape":"StateOrRegionList",
"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>",
"location":"querystring",
"locationName":"OperatingAddressStateOrRegionFilter"
},
"OperatingAddressCityFilter":{
"shape":"CityList",
"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>",
"location":"querystring",
"locationName":"OperatingAddressCityFilter"
}
}
},
Expand Down Expand Up @@ -1649,6 +1675,10 @@
"min":1,
"pattern":"^\\S[\\S ]*$"
},
"StateOrRegionList":{
"type":"list",
"member":{"shape":"StateOrRegion"}
},
"String":{
"type":"string",
"max":1000,
Expand Down

0 comments on commit 759cbf5

Please sign in to comment.