Skip to content

Commit 7f874fa

Browse files
AWS SDK for RubyNobody
authored andcommitted
Updated API models and rebuilt service gems.
1 parent 61e36da commit 7f874fa

File tree

24 files changed

+2632
-504
lines changed

24 files changed

+2632
-504
lines changed

apis/appsync/2017-07-25/api-2.json

Lines changed: 315 additions & 0 deletions
Large diffs are not rendered by default.

apis/appsync/2017-07-25/docs-2.json

Lines changed: 275 additions & 122 deletions
Large diffs are not rendered by default.

apis/location/2020-11-19/api-2.json

Lines changed: 131 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -775,6 +775,24 @@
775775
],
776776
"endpoint":{"hostPrefix":"places."}
777777
},
778+
"SearchPlaceIndexForSuggestions":{
779+
"name":"SearchPlaceIndexForSuggestions",
780+
"http":{
781+
"method":"POST",
782+
"requestUri":"/places/v0/indexes/{IndexName}/search/suggestions",
783+
"responseCode":200
784+
},
785+
"input":{"shape":"SearchPlaceIndexForSuggestionsRequest"},
786+
"output":{"shape":"SearchPlaceIndexForSuggestionsResponse"},
787+
"errors":[
788+
{"shape":"InternalServerException"},
789+
{"shape":"ResourceNotFoundException"},
790+
{"shape":"AccessDeniedException"},
791+
{"shape":"ValidationException"},
792+
{"shape":"ThrottlingException"}
793+
],
794+
"endpoint":{"hostPrefix":"places."}
795+
},
778796
"SearchPlaceIndexForText":{
779797
"name":"SearchPlaceIndexForText",
780798
"http":{
@@ -1821,8 +1839,10 @@
18211839
"SampleTime"
18221840
],
18231841
"members":{
1842+
"Accuracy":{"shape":"PositionalAccuracy"},
18241843
"DeviceId":{"shape":"Id"},
18251844
"Position":{"shape":"Position"},
1845+
"PositionProperties":{"shape":"PropertyMap"},
18261846
"ReceivedTime":{"shape":"Timestamp"},
18271847
"SampleTime":{"shape":"Timestamp"}
18281848
}
@@ -1839,8 +1859,10 @@
18391859
"SampleTime"
18401860
],
18411861
"members":{
1862+
"Accuracy":{"shape":"PositionalAccuracy"},
18421863
"DeviceId":{"shape":"Id"},
18431864
"Position":{"shape":"Position"},
1865+
"PositionProperties":{"shape":"PropertyMap"},
18441866
"SampleTime":{"shape":"Timestamp"}
18451867
}
18461868
},
@@ -1949,8 +1971,10 @@
19491971
"SampleTime"
19501972
],
19511973
"members":{
1974+
"Accuracy":{"shape":"PositionalAccuracy"},
19521975
"DeviceId":{"shape":"Id"},
19531976
"Position":{"shape":"Position"},
1977+
"PositionProperties":{"shape":"PropertyMap"},
19541978
"ReceivedTime":{"shape":"Timestamp"},
19551979
"SampleTime":{"shape":"Timestamp"}
19561980
}
@@ -2274,8 +2298,10 @@
22742298
"SampleTime"
22752299
],
22762300
"members":{
2301+
"Accuracy":{"shape":"PositionalAccuracy"},
22772302
"DeviceId":{"shape":"Id"},
22782303
"Position":{"shape":"Position"},
2304+
"PositionProperties":{"shape":"PropertyMap"},
22792305
"SampleTime":{"shape":"Timestamp"}
22802306
}
22812307
},
@@ -2643,6 +2669,19 @@
26432669
"AccuracyBased"
26442670
]
26452671
},
2672+
"PositionalAccuracy":{
2673+
"type":"structure",
2674+
"required":["Horizontal"],
2675+
"members":{
2676+
"Horizontal":{"shape":"PositionalAccuracyHorizontalDouble"}
2677+
}
2678+
},
2679+
"PositionalAccuracyHorizontalDouble":{
2680+
"type":"double",
2681+
"box":true,
2682+
"max":10000,
2683+
"min":0
2684+
},
26462685
"PricingPlan":{
26472686
"type":"string",
26482687
"enum":[
@@ -2651,6 +2690,24 @@
26512690
"MobileAssetManagement"
26522691
]
26532692
},
2693+
"PropertyMap":{
2694+
"type":"map",
2695+
"key":{"shape":"PropertyMapKeyString"},
2696+
"value":{"shape":"PropertyMapValueString"},
2697+
"max":3,
2698+
"min":0,
2699+
"sensitive":true
2700+
},
2701+
"PropertyMapKeyString":{
2702+
"type":"string",
2703+
"max":20,
2704+
"min":1
2705+
},
2706+
"PropertyMapValueString":{
2707+
"type":"string",
2708+
"max":40,
2709+
"min":1
2710+
},
26542711
"PutGeofenceRequest":{
26552712
"type":"structure",
26562713
"required":[
@@ -2731,6 +2788,17 @@
27312788
"type":"list",
27322789
"member":{"shape":"SearchForPositionResult"}
27332790
},
2791+
"SearchForSuggestionsResult":{
2792+
"type":"structure",
2793+
"required":["Text"],
2794+
"members":{
2795+
"Text":{"shape":"String"}
2796+
}
2797+
},
2798+
"SearchForSuggestionsResultList":{
2799+
"type":"list",
2800+
"member":{"shape":"SearchForSuggestionsResult"}
2801+
},
27342802
"SearchForTextResult":{
27352803
"type":"structure",
27362804
"required":["Place"],
@@ -2796,6 +2864,59 @@
27962864
"Position":{"shape":"Position"}
27972865
}
27982866
},
2867+
"SearchPlaceIndexForSuggestionsRequest":{
2868+
"type":"structure",
2869+
"required":[
2870+
"IndexName",
2871+
"Text"
2872+
],
2873+
"members":{
2874+
"BiasPosition":{"shape":"Position"},
2875+
"FilterBBox":{"shape":"BoundingBox"},
2876+
"FilterCountries":{"shape":"CountryCodeList"},
2877+
"IndexName":{
2878+
"shape":"ResourceName",
2879+
"location":"uri",
2880+
"locationName":"IndexName"
2881+
},
2882+
"Language":{"shape":"LanguageTag"},
2883+
"MaxResults":{"shape":"SearchPlaceIndexForSuggestionsRequestMaxResultsInteger"},
2884+
"Text":{"shape":"SyntheticSearchPlaceIndexForSuggestionsRequestString"}
2885+
}
2886+
},
2887+
"SearchPlaceIndexForSuggestionsRequestMaxResultsInteger":{
2888+
"type":"integer",
2889+
"box":true,
2890+
"max":15,
2891+
"min":1
2892+
},
2893+
"SearchPlaceIndexForSuggestionsResponse":{
2894+
"type":"structure",
2895+
"required":[
2896+
"Results",
2897+
"Summary"
2898+
],
2899+
"members":{
2900+
"Results":{"shape":"SearchForSuggestionsResultList"},
2901+
"Summary":{"shape":"SearchPlaceIndexForSuggestionsSummary"}
2902+
}
2903+
},
2904+
"SearchPlaceIndexForSuggestionsSummary":{
2905+
"type":"structure",
2906+
"required":[
2907+
"DataSource",
2908+
"Text"
2909+
],
2910+
"members":{
2911+
"BiasPosition":{"shape":"Position"},
2912+
"DataSource":{"shape":"String"},
2913+
"FilterBBox":{"shape":"BoundingBox"},
2914+
"FilterCountries":{"shape":"CountryCodeList"},
2915+
"Language":{"shape":"LanguageTag"},
2916+
"MaxResults":{"shape":"Integer"},
2917+
"Text":{"shape":"SyntheticSearchPlaceIndexForSuggestionsSummaryString"}
2918+
}
2919+
},
27992920
"SearchPlaceIndexForTextRequest":{
28002921
"type":"structure",
28012922
"required":[
@@ -2895,6 +3016,16 @@
28953016
"member":{"shape":"Step"}
28963017
},
28973018
"String":{"type":"string"},
3019+
"SyntheticSearchPlaceIndexForSuggestionsRequestString":{
3020+
"type":"string",
3021+
"max":200,
3022+
"min":1,
3023+
"sensitive":true
3024+
},
3025+
"SyntheticSearchPlaceIndexForSuggestionsSummaryString":{
3026+
"type":"string",
3027+
"sensitive":true
3028+
},
28983029
"SyntheticSearchPlaceIndexForTextRequestString":{
28993030
"type":"string",
29003031
"max":200,

0 commit comments

Comments
 (0)