aws-sdk-core 2.11.502 → 3.94.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1306) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +89 -584
  4. data/lib/aws-sdk-core/arn.rb +77 -0
  5. data/lib/aws-sdk-core/arn_parser.rb +38 -0
  6. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +102 -0
  7. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  8. data/lib/aws-sdk-core/binary.rb +6 -0
  9. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  10. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  11. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  12. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  13. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  14. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  15. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  16. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  17. data/lib/aws-sdk-core/client_stubs.rb +20 -16
  18. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  19. data/lib/aws-sdk-core/credential_provider_chain.rb +88 -32
  20. data/lib/aws-sdk-core/deprecations.rb +16 -10
  21. data/lib/aws-sdk-core/endpoint_cache.rb +14 -11
  22. data/lib/aws-sdk-core/errors.rb +167 -26
  23. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  24. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  25. data/lib/aws-sdk-core/instance_profile_credentials.rb +58 -74
  26. data/lib/aws-sdk-core/json.rb +17 -19
  27. data/lib/aws-sdk-core/json/builder.rb +4 -2
  28. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  29. data/lib/aws-sdk-core/json/handler.rb +22 -3
  30. data/lib/aws-sdk-core/json/parser.rb +1 -1
  31. data/lib/aws-sdk-core/log/formatter.rb +7 -1
  32. data/lib/aws-sdk-core/log/param_filter.rb +6 -5
  33. data/lib/aws-sdk-core/pageable_response.rb +35 -20
  34. data/lib/aws-sdk-core/pager.rb +30 -25
  35. data/lib/aws-sdk-core/param_converter.rb +3 -3
  36. data/lib/aws-sdk-core/param_validator.rb +58 -25
  37. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  38. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  39. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  40. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  41. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +281 -0
  42. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  43. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  44. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +44 -51
  45. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
  46. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  47. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  48. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  49. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  50. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  51. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  52. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  53. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  54. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  55. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  56. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  57. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +27 -15
  58. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  59. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +137 -0
  60. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +98 -0
  61. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +142 -0
  62. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +57 -0
  63. data/lib/aws-sdk-core/plugins/retry_errors.rb +332 -98
  64. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  65. data/lib/aws-sdk-core/plugins/signature_v4.rb +152 -0
  66. data/lib/aws-sdk-core/plugins/stub_responses.rb +36 -18
  67. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +51 -0
  68. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -10
  69. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  70. data/lib/aws-sdk-core/query.rb +5 -0
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  72. data/lib/aws-sdk-core/query/handler.rb +20 -16
  73. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  75. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  76. data/lib/aws-sdk-core/rest.rb +10 -0
  77. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  78. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  79. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  80. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  81. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  82. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  83. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  84. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  85. data/lib/aws-sdk-core/shared_config.rb +139 -96
  86. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  87. data/lib/aws-sdk-core/structure.rb +22 -13
  88. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  89. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  90. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  91. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  92. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  93. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  94. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  95. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  96. data/lib/aws-sdk-core/util.rb +70 -0
  97. data/lib/aws-sdk-core/waiters.rb +3 -0
  98. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  99. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  100. data/lib/aws-sdk-core/xml.rb +9 -0
  101. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  102. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  103. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  104. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  105. data/lib/aws-sdk-sts.rb +48 -0
  106. data/lib/aws-sdk-sts/client.rb +2210 -0
  107. data/lib/aws-sdk-sts/client_api.rb +336 -0
  108. data/lib/aws-sdk-sts/customizations.rb +2 -0
  109. data/lib/aws-sdk-sts/errors.rb +164 -0
  110. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  111. data/lib/aws-sdk-sts/presigner.rb +67 -0
  112. data/lib/aws-sdk-sts/resource.rb +24 -0
  113. data/lib/aws-sdk-sts/types.rb +1504 -0
  114. data/lib/seahorse.rb +60 -60
  115. data/lib/seahorse/client/async_base.rb +50 -0
  116. data/lib/seahorse/client/async_response.rb +62 -0
  117. data/lib/seahorse/client/base.rb +5 -9
  118. data/lib/seahorse/client/configuration.rb +4 -2
  119. data/lib/seahorse/client/h2/connection.rb +246 -0
  120. data/lib/seahorse/client/h2/handler.rb +151 -0
  121. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  122. data/lib/seahorse/client/http/async_response.rb +42 -0
  123. data/lib/seahorse/client/http/response.rb +10 -5
  124. data/lib/seahorse/client/logging/formatter.rb +6 -2
  125. data/lib/seahorse/client/logging/handler.rb +2 -0
  126. data/lib/seahorse/client/net_http/connection_pool.rb +35 -24
  127. data/lib/seahorse/client/net_http/handler.rb +12 -1
  128. data/lib/seahorse/client/net_http/patches.rb +9 -1
  129. data/lib/seahorse/client/networking_error.rb +28 -0
  130. data/lib/seahorse/client/plugin.rb +67 -6
  131. data/lib/seahorse/client/plugins/content_length.rb +5 -2
  132. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  133. data/lib/seahorse/client/plugins/h2.rb +64 -0
  134. data/lib/seahorse/client/plugins/logging.rb +17 -19
  135. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  136. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  137. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  138. data/lib/seahorse/client/request_context.rb +5 -0
  139. data/lib/seahorse/client/response.rb +3 -5
  140. data/lib/seahorse/model/api.rb +33 -0
  141. data/lib/seahorse/model/authorizer.rb +21 -0
  142. data/lib/seahorse/model/operation.rb +11 -0
  143. data/lib/seahorse/model/shapes.rb +44 -2
  144. data/lib/seahorse/util.rb +1 -22
  145. metadata +110 -1176
  146. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -954
  147. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  148. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -34
  149. data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1195
  150. data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
  151. data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -28
  152. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  153. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  154. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  155. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  156. data/apis/acm/2015-12-08/api-2.json +0 -872
  157. data/apis/acm/2015-12-08/examples-1.json +0 -5
  158. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  159. data/apis/acm/2015-12-08/smoke.json +0 -18
  160. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  161. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4133
  162. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  163. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  164. data/apis/amplify/2017-07-25/api-2.json +0 -2374
  165. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  166. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  167. data/apis/apigateway/2015-07-09/api-2.json +0 -5384
  168. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  169. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  170. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  171. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  172. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  173. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -6981
  174. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  175. data/apis/appconfig/2019-10-09/api-2.json +0 -1428
  176. data/apis/appconfig/2019-10-09/examples-1.json +0 -5
  177. data/apis/appconfig/2019-10-09/paginators-1.json +0 -29
  178. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -791
  179. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -221
  180. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  181. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  182. data/apis/application-insights/2018-11-25/api-2.json +0 -1261
  183. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  184. data/apis/application-insights/2018-11-25/paginators-1.json +0 -34
  185. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  186. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  187. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  188. data/apis/appmesh/2019-01-25/api-2.json +0 -3756
  189. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  190. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  191. data/apis/appstream/2016-12-01/api-2.json +0 -2356
  192. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  193. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  194. data/apis/appstream/2016-12-01/smoke.json +0 -11
  195. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  196. data/apis/appsync/2017-07-25/api-2.json +0 -2288
  197. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  198. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  199. data/apis/athena/2017-05-18/api-2.json +0 -989
  200. data/apis/athena/2017-05-18/examples-1.json +0 -5
  201. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  202. data/apis/athena/2017-05-18/smoke.json +0 -11
  203. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  204. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  205. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  206. data/apis/autoscaling/2011-01-01/api-2.json +0 -2467
  207. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  208. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  209. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  210. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  211. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  212. data/apis/backup/2018-11-15/api-2.json +0 -2345
  213. data/apis/backup/2018-11-15/examples-1.json +0 -5
  214. data/apis/backup/2018-11-15/paginators-1.json +0 -64
  215. data/apis/batch/2016-08-10/api-2.json +0 -1137
  216. data/apis/batch/2016-08-10/examples-1.json +0 -589
  217. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  218. data/apis/batch/2016-08-10/smoke.json +0 -11
  219. data/apis/budgets/2016-10-20/api-2.json +0 -830
  220. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  221. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  222. data/apis/ce/2017-10-25/api-2.json +0 -1722
  223. data/apis/ce/2017-10-25/examples-1.json +0 -5
  224. data/apis/ce/2017-10-25/paginators-1.json +0 -19
  225. data/apis/chime/2018-05-01/api-2.json +0 -5506
  226. data/apis/chime/2018-05-01/examples-1.json +0 -5
  227. data/apis/chime/2018-05-01/paginators-1.json +0 -64
  228. data/apis/cloud9/2017-09-23/api-2.json +0 -674
  229. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  230. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  231. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  232. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  233. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  234. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  235. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  236. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  237. data/apis/cloudformation/2010-05-15/api-2.json +0 -3438
  238. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  239. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -57
  240. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  241. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  242. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -257
  243. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  244. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  245. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  246. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  247. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  248. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  249. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  250. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  251. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  252. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  253. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  254. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  255. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  256. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  257. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  258. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  259. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  260. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  261. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  262. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  263. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  264. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  265. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  266. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  267. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  268. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  269. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  270. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  271. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  272. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  273. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  274. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  275. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  276. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  277. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  278. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  279. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  280. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  281. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  282. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  283. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  284. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  285. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  286. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  287. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  288. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  289. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  290. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  291. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  292. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  293. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -741
  294. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  295. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  296. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  297. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  298. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  299. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  300. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  301. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  302. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  303. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  304. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  305. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  306. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  307. data/apis/codebuild/2016-10-06/api-2.json +0 -1910
  308. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  309. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  310. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  311. data/apis/codecommit/2015-04-13/api-2.json +0 -5383
  312. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  313. data/apis/codecommit/2015-04-13/paginators-1.json +0 -64
  314. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  315. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  316. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  317. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  318. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  319. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  320. data/apis/codeguru-reviewer/2019-09-19/api-2.json +0 -820
  321. data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
  322. data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -25
  323. data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -801
  324. data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
  325. data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -15
  326. data/apis/codepipeline/2015-07-09/api-2.json +0 -2505
  327. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  328. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  329. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  330. data/apis/codestar-connections/2019-12-01/api-2.json +0 -315
  331. data/apis/codestar-connections/2019-12-01/examples-1.json +0 -5
  332. data/apis/codestar-connections/2019-12-01/paginators-1.json +0 -9
  333. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  334. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  335. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  336. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  337. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  338. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  339. data/apis/codestar/2017-04-19/smoke.json +0 -11
  340. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
  341. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  342. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  343. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5450
  344. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  345. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  346. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  347. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  348. data/apis/comprehend/2017-11-27/api-2.json +0 -2664
  349. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  350. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  351. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -1209
  352. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  353. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  354. data/apis/compute-optimizer/2019-11-01/api-2.json +0 -571
  355. data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
  356. data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
  357. data/apis/config/2014-11-12/api-2.json +0 -4379
  358. data/apis/config/2014-11-12/examples-1.json +0 -5
  359. data/apis/config/2014-11-12/paginators-1.json +0 -26
  360. data/apis/config/2014-11-12/smoke.json +0 -19
  361. data/apis/connect/2017-08-08/api-2.json +0 -2139
  362. data/apis/connect/2017-08-08/examples-1.json +0 -5
  363. data/apis/connect/2017-08-08/paginators-1.json +0 -62
  364. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  365. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  366. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  367. data/apis/cur/2017-01-06/api-2.json +0 -277
  368. data/apis/cur/2017-01-06/examples-1.json +0 -102
  369. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  370. data/apis/cur/2017-01-06/smoke.json +0 -11
  371. data/apis/dataexchange/2017-07-25/api-2.json +0 -2273
  372. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  373. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  374. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  375. data/apis/datasync/2018-11-09/api-2.json +0 -1451
  376. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  377. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  378. data/apis/dax/2017-04-19/api-2.json +0 -1140
  379. data/apis/dax/2017-04-19/examples-1.json +0 -5
  380. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  381. data/apis/detective/2018-10-26/api-2.json +0 -486
  382. data/apis/detective/2018-10-26/examples-1.json +0 -5
  383. data/apis/detective/2018-10-26/paginators-1.json +0 -19
  384. data/apis/devicefarm/2015-06-23/api-2.json +0 -3619
  385. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  386. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -97
  387. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  388. data/apis/directconnect/2012-10-25/api-2.json +0 -2074
  389. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  390. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  391. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  392. data/apis/discovery/2015-11-01/api-2.json +0 -1369
  393. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  394. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  395. data/apis/discovery/2015-11-01/smoke.json +0 -11
  396. data/apis/dlm/2018-01-12/api-2.json +0 -687
  397. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  398. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  399. data/apis/dms/2016-01-01/api-2.json +0 -2341
  400. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  401. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  402. data/apis/dms/2016-01-01/smoke.json +0 -18
  403. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  404. data/apis/docdb/2014-10-31/api-2.json +0 -2534
  405. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  406. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  407. data/apis/docdb/2014-10-31/smoke.json +0 -18
  408. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  409. data/apis/ds/2015-04-16/api-2.json +0 -3019
  410. data/apis/ds/2015-04-16/examples-1.json +0 -5
  411. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  412. data/apis/ds/2015-04-16/smoke.json +0 -20
  413. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  414. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  415. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  416. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  417. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  418. data/apis/dynamodb/2012-08-10/api-2.json +0 -3182
  419. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  420. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -31
  421. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  422. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  423. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  424. data/apis/ebs/2019-11-02/api-2.json +0 -277
  425. data/apis/ebs/2019-11-02/examples-1.json +0 -5
  426. data/apis/ebs/2019-11-02/paginators-1.json +0 -14
  427. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  428. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  429. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  430. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  431. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  432. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  433. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  434. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  435. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  436. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  437. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  438. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  439. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  440. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  441. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  442. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  443. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  444. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  445. data/apis/ec2/2016-11-15/api-2.json +0 -29632
  446. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  447. data/apis/ec2/2016-11-15/paginators-1.json +0 -558
  448. data/apis/ec2/2016-11-15/resources-1.json +0 -2907
  449. data/apis/ec2/2016-11-15/smoke.json +0 -20
  450. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  451. data/apis/ecr/2015-09-21/api-2.json +0 -1633
  452. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  453. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  454. data/apis/ecr/2015-09-21/smoke.json +0 -18
  455. data/apis/ecr/2015-09-21/waiters-2.json +0 -45
  456. data/apis/ecs/2014-11-13/api-2.json +0 -3176
  457. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  458. data/apis/ecs/2014-11-13/paginators-1.json +0 -52
  459. data/apis/ecs/2014-11-13/smoke.json +0 -18
  460. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  461. data/apis/eks/2017-11-01/api-2.json +0 -1457
  462. data/apis/eks/2017-11-01/examples-1.json +0 -135
  463. data/apis/eks/2017-11-01/paginators-1.json +0 -28
  464. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  465. data/apis/elastic-inference/2017-07-25/api-2.json +0 -426
  466. data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
  467. data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -10
  468. data/apis/elasticache/2015-02-02/api-2.json +0 -3758
  469. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  470. data/apis/elasticache/2015-02-02/paginators-1.json +0 -94
  471. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  472. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  473. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2567
  474. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  475. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -30
  476. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  477. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -1377
  478. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  479. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -24
  480. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  481. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  482. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  483. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  484. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  485. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  486. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2346
  487. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  488. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  489. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  490. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  491. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2338
  492. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  493. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  494. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  495. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  496. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  497. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  498. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  499. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  500. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  501. data/apis/email/2010-12-01/api-2.json +0 -3182
  502. data/apis/email/2010-12-01/examples-1.json +0 -1021
  503. data/apis/email/2010-12-01/paginators-1.json +0 -18
  504. data/apis/email/2010-12-01/smoke.json +0 -18
  505. data/apis/email/2010-12-01/waiters-2.json +0 -18
  506. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  507. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  508. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  509. data/apis/es/2015-01-01/api-2.json +0 -2044
  510. data/apis/es/2015-01-01/examples-1.json +0 -5
  511. data/apis/es/2015-01-01/paginators-1.json +0 -44
  512. data/apis/es/2015-01-01/smoke.json +0 -18
  513. data/apis/eventbridge/2015-10-07/api-2.json +0 -1467
  514. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  515. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  516. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  517. data/apis/events/2015-10-07/api-2.json +0 -1467
  518. data/apis/events/2015-10-07/examples-1.json +0 -5
  519. data/apis/events/2015-10-07/paginators-1.json +0 -4
  520. data/apis/events/2015-10-07/smoke.json +0 -18
  521. data/apis/firehose/2015-08-04/api-2.json +0 -1552
  522. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  523. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  524. data/apis/firehose/2015-08-04/smoke.json +0 -18
  525. data/apis/fms/2018-01-01/api-2.json +0 -834
  526. data/apis/fms/2018-01-01/examples-1.json +0 -5
  527. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  528. data/apis/forecast/2018-06-26/api-2.json +0 -1418
  529. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  530. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  531. data/apis/forecastquery/2018-06-26/api-2.json +0 -146
  532. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  533. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  534. data/apis/frauddetector/2019-11-15/api-2.json +0 -1633
  535. data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
  536. data/apis/frauddetector/2019-11-15/paginators-1.json +0 -39
  537. data/apis/fsx/2018-03-01/api-2.json +0 -1384
  538. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  539. data/apis/fsx/2018-03-01/paginators-1.json +0 -19
  540. data/apis/gamelift/2015-10-01/api-2.json +0 -4455
  541. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  542. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  543. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  544. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  545. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  546. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  547. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  548. data/apis/glacier/2012-06-01/smoke.json +0 -18
  549. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  550. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -1165
  551. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  552. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  553. data/apis/glue/2017-03-31/api-2.json +0 -6344
  554. data/apis/glue/2017-03-31/examples-1.json +0 -5
  555. data/apis/glue/2017-03-31/paginators-1.json +0 -125
  556. data/apis/glue/2017-03-31/smoke.json +0 -11
  557. data/apis/greengrass/2017-06-07/api-2.json +0 -5124
  558. data/apis/groundstation/2019-05-23/api-2.json +0 -1409
  559. data/apis/groundstation/2019-05-23/examples-1.json +0 -5
  560. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  561. data/apis/guardduty/2017-11-28/api-2.json +0 -3736
  562. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  563. data/apis/guardduty/2017-11-28/paginators-1.json +0 -57
  564. data/apis/health/2016-08-04/api-2.json +0 -836
  565. data/apis/health/2016-08-04/examples-1.json +0 -5
  566. data/apis/health/2016-08-04/paginators-1.json +0 -52
  567. data/apis/health/2016-08-04/smoke.json +0 -11
  568. data/apis/iam/2010-05-08/api-2.json +0 -5797
  569. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  570. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  571. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  572. data/apis/iam/2010-05-08/smoke.json +0 -18
  573. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  574. data/apis/imagebuilder/2019-12-02/api-2.json +0 -2431
  575. data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
  576. data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
  577. data/apis/importexport/2010-06-01/api-2.json +0 -667
  578. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  579. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  580. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  581. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  582. data/apis/inspector/2016-02-16/smoke.json +0 -18
  583. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  584. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  585. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  586. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  587. data/apis/iot/2015-05-28/api-2.json +0 -11427
  588. data/apis/iot/2015-05-28/examples-1.json +0 -5
  589. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  590. data/apis/iot/2015-05-28/smoke.json +0 -18
  591. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  592. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  593. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  594. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  595. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
  596. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  597. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  598. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  599. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  600. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  601. data/apis/iotevents/2018-07-27/api-2.json +0 -1262
  602. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  603. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  604. data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -388
  605. data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
  606. data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
  607. data/apis/iotsitewise/2019-12-02/api-2.json +0 -3580
  608. data/apis/iotsitewise/2019-12-02/examples-1.json +0 -5
  609. data/apis/iotsitewise/2019-12-02/paginators-1.json +0 -70
  610. data/apis/iotsitewise/2019-12-02/waiters-2.json +0 -92
  611. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  612. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  613. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  614. data/apis/kafka/2018-11-14/api-2.json +0 -2297
  615. data/apis/kafka/2018-11-14/paginators-1.json +0 -40
  616. data/apis/kendra/2019-02-03/api-2.json +0 -1748
  617. data/apis/kendra/2019-02-03/examples-1.json +0 -5
  618. data/apis/kendra/2019-02-03/paginators-1.json +0 -19
  619. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -498
  620. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  621. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  622. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  623. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  624. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  625. data/apis/kinesis-video-signaling/2019-12-04/api-2.json +0 -200
  626. data/apis/kinesis-video-signaling/2019-12-04/examples-1.json +0 -5
  627. data/apis/kinesis-video-signaling/2019-12-04/paginators-1.json +0 -4
  628. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  629. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  630. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  631. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  632. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  633. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  634. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  635. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  636. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2266
  637. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  638. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  639. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -958
  640. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  641. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -16
  642. data/apis/kms/2014-11-01/api-2.json +0 -2155
  643. data/apis/kms/2014-11-01/examples-1.json +0 -906
  644. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  645. data/apis/kms/2014-11-01/smoke.json +0 -19
  646. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  647. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  648. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  649. data/apis/lambda/2014-11-11/api-2.json +0 -668
  650. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  651. data/apis/lambda/2015-03-31/api-2.json +0 -2946
  652. data/apis/lambda/2015-03-31/examples-1.json +0 -1513
  653. data/apis/lambda/2015-03-31/paginators-1.json +0 -52
  654. data/apis/lambda/2015-03-31/smoke.json +0 -18
  655. data/apis/lambda/2015-03-31/waiters-2.json +0 -74
  656. data/apis/lex-models/2017-04-19/api-2.json +0 -2550
  657. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  658. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  659. data/apis/license-manager/2018-08-01/api-2.json +0 -886
  660. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  661. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  662. data/apis/lightsail/2016-11-28/api-2.json +0 -5429
  663. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  664. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  665. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  666. data/apis/logs/2014-03-28/api-2.json +0 -1701
  667. data/apis/logs/2014-03-28/examples-1.json +0 -5
  668. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  669. data/apis/logs/2014-03-28/smoke.json +0 -19
  670. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  671. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  672. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  673. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  674. data/apis/macie/2017-12-19/api-2.json +0 -365
  675. data/apis/macie/2017-12-19/examples-1.json +0 -5
  676. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  677. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1498
  678. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  679. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  680. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
  681. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  682. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  683. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  684. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  685. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  686. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  687. data/apis/mediaconnect/2018-11-14/api-2.json +0 -2405
  688. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  689. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8921
  690. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  691. data/apis/medialive/2017-10-14/api-2.json +0 -10868
  692. data/apis/medialive/2017-10-14/paginators-1.json +0 -52
  693. data/apis/medialive/2017-10-14/waiters-2.json +0 -217
  694. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1757
  695. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  696. data/apis/mediapackage/2017-10-12/api-2.json +0 -2516
  697. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  698. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  699. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  700. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  701. data/apis/mediastore/2017-09-01/api-2.json +0 -871
  702. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  703. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  704. data/apis/mediatailor/2018-04-23/api-2.json +0 -584
  705. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  706. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
  707. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  708. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  709. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -220
  710. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  711. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  712. data/apis/mobile/2017-07-01/api-2.json +0 -551
  713. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  714. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  715. data/apis/monitoring/2010-08-01/api-2.json +0 -1973
  716. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  717. data/apis/monitoring/2010-08-01/paginators-1.json +0 -46
  718. data/apis/monitoring/2010-08-01/resources-1.json +0 -505
  719. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  720. data/apis/monitoring/2010-08-01/waiters-2.json +0 -31
  721. data/apis/mq/2017-11-27/api-2.json +0 -2577
  722. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  723. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  724. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  725. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  726. data/apis/neptune/2014-10-31/api-2.json +0 -3583
  727. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  728. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  729. data/apis/neptune/2014-10-31/smoke.json +0 -18
  730. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  731. data/apis/networkmanager/2019-07-05/api-2.json +0 -1588
  732. data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
  733. data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
  734. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  735. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  736. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  737. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  738. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  739. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  740. data/apis/opsworkscm/2016-11-01/api-2.json +0 -947
  741. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  742. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -28
  743. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  744. data/apis/organizations/2016-11-28/api-2.json +0 -2578
  745. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  746. data/apis/organizations/2016-11-28/paginators-1.json +0 -86
  747. data/apis/outposts/2019-12-03/api-2.json +0 -429
  748. data/apis/outposts/2019-12-03/examples-1.json +0 -5
  749. data/apis/outposts/2019-12-03/paginators-1.json +0 -14
  750. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  751. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  752. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  753. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -149
  754. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  755. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  756. data/apis/personalize/2018-05-22/api-2.json +0 -1871
  757. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  758. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  759. data/apis/pi/2018-02-27/api-2.json +0 -253
  760. data/apis/pi/2018-02-27/examples-1.json +0 -5
  761. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  762. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  763. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  764. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  765. data/apis/pinpoint/2016-12-01/api-2.json +0 -12340
  766. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  767. data/apis/polly/2016-06-10/api-2.json +0 -832
  768. data/apis/polly/2016-06-10/examples-1.json +0 -171
  769. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  770. data/apis/polly/2016-06-10/smoke.json +0 -11
  771. data/apis/pricing/2017-10-15/api-2.json +0 -227
  772. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  773. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  774. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  775. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  776. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  777. data/apis/qldb/2019-01-02/api-2.json +0 -776
  778. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  779. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  780. data/apis/quicksight/2018-04-01/api-2.json +0 -5550
  781. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  782. data/apis/quicksight/2018-04-01/paginators-1.json +0 -49
  783. data/apis/ram/2018-01-04/api-2.json +0 -1315
  784. data/apis/ram/2018-01-04/examples-1.json +0 -5
  785. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  786. data/apis/rds-data/2018-08-01/api-2.json +0 -552
  787. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  788. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  789. data/apis/rds/2013-01-10/api-2.json +0 -2903
  790. data/apis/rds/2013-01-10/examples-1.json +0 -5
  791. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  792. data/apis/rds/2013-01-10/smoke.json +0 -18
  793. data/apis/rds/2013-02-12/api-2.json +0 -3059
  794. data/apis/rds/2013-02-12/examples-1.json +0 -5
  795. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  796. data/apis/rds/2013-02-12/smoke.json +0 -18
  797. data/apis/rds/2013-09-09/api-2.json +0 -3160
  798. data/apis/rds/2013-09-09/examples-1.json +0 -5
  799. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  800. data/apis/rds/2013-09-09/smoke.json +0 -18
  801. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  802. data/apis/rds/2014-09-01/api-2.json +0 -3273
  803. data/apis/rds/2014-09-01/examples-1.json +0 -5
  804. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  805. data/apis/rds/2014-09-01/smoke.json +0 -18
  806. data/apis/rds/2014-10-31/api-2.json +0 -7703
  807. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  808. data/apis/rds/2014-10-31/paginators-1.json +0 -164
  809. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  810. data/apis/rds/2014-10-31/smoke.json +0 -18
  811. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  812. data/apis/redshift/2012-12-01/api-2.json +0 -5526
  813. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  814. data/apis/redshift/2012-12-01/paginators-1.json +0 -112
  815. data/apis/redshift/2012-12-01/smoke.json +0 -18
  816. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  817. data/apis/rekognition/2016-06-27/api-2.json +0 -2854
  818. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  819. data/apis/rekognition/2016-06-27/paginators-1.json +0 -68
  820. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  821. data/apis/rekognition/2016-06-27/waiters-2.json +0 -45
  822. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  823. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  824. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  825. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
  826. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  827. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
  828. data/apis/robomaker/2018-06-29/api-2.json +0 -2420
  829. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  830. data/apis/robomaker/2018-06-29/paginators-1.json +0 -46
  831. data/apis/route53/2013-04-01/api-2.json +0 -3791
  832. data/apis/route53/2013-04-01/examples-1.json +0 -762
  833. data/apis/route53/2013-04-01/paginators-1.json +0 -39
  834. data/apis/route53/2013-04-01/smoke.json +0 -18
  835. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  836. data/apis/route53domains/2014-05-15/api-2.json +0 -1507
  837. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  838. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  839. data/apis/route53domains/2014-05-15/smoke.json +0 -18
  840. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  841. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  842. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  843. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  844. data/apis/runtime.lex/2016-11-28/api-2.json +0 -714
  845. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  846. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  847. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -165
  848. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  849. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  850. data/apis/s3/2006-03-01/api-2.json +0 -6653
  851. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  852. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  853. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  854. data/apis/s3/2006-03-01/smoke.json +0 -11
  855. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  856. data/apis/s3control/2018-08-20/api-2.json +0 -1585
  857. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  858. data/apis/s3control/2018-08-20/paginators-1.json +0 -14
  859. data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -366
  860. data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
  861. data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
  862. data/apis/sagemaker/2017-07-24/api-2.json +0 -9257
  863. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  864. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -196
  865. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
  866. data/apis/savingsplans/2019-06-28/api-2.json +0 -755
  867. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  868. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  869. data/apis/schemas/2019-12-02/api-2.json +0 -2867
  870. data/apis/schemas/2019-12-02/paginators-1.json +0 -34
  871. data/apis/schemas/2019-12-02/waiters-2.json +0 -36
  872. data/apis/sdb/2009-04-15/api-2.json +0 -955
  873. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  874. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  875. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  876. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  877. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  878. data/apis/securityhub/2018-10-26/api-2.json +0 -2979
  879. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  880. data/apis/securityhub/2018-10-26/paginators-1.json +0 -54
  881. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1857
  882. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  883. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  884. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  885. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  886. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3983
  887. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  888. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -89
  889. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  890. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  891. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -342
  892. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  893. data/apis/sesv2/2019-09-27/api-2.json +0 -2433
  894. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  895. data/apis/sesv2/2019-09-27/paginators-1.json +0 -39
  896. data/apis/shield/2016-06-02/api-2.json +0 -968
  897. data/apis/shield/2016-06-02/examples-1.json +0 -5
  898. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  899. data/apis/shield/2016-06-02/smoke.json +0 -11
  900. data/apis/signer/2017-08-25/api-2.json +0 -822
  901. data/apis/signer/2017-08-25/examples-1.json +0 -5
  902. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  903. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  904. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  905. data/apis/sms/2016-10-24/api-2.json +0 -1366
  906. data/apis/sms/2016-10-24/examples-1.json +0 -5
  907. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  908. data/apis/sms/2016-10-24/smoke.json +0 -18
  909. data/apis/snowball/2016-06-30/api-2.json +0 -977
  910. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  911. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  912. data/apis/snowball/2016-06-30/smoke.json +0 -11
  913. data/apis/sns/2010-03-31/api-2.json +0 -1468
  914. data/apis/sns/2010-03-31/examples-1.json +0 -5
  915. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  916. data/apis/sns/2010-03-31/resources-1.json +0 -327
  917. data/apis/sns/2010-03-31/smoke.json +0 -19
  918. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  919. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  920. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  921. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  922. data/apis/sqs/2012-11-05/smoke.json +0 -18
  923. data/apis/ssm/2014-11-06/api-2.json +0 -9261
  924. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  925. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  926. data/apis/ssm/2014-11-06/smoke.json +0 -18
  927. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  928. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  929. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  930. data/apis/sso/2019-06-10/api-2.json +0 -281
  931. data/apis/sso/2019-06-10/examples-1.json +0 -5
  932. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  933. data/apis/states/2016-11-23/api-2.json +0 -1477
  934. data/apis/states/2016-11-23/examples-1.json +0 -5
  935. data/apis/states/2016-11-23/paginators-1.json +0 -28
  936. data/apis/states/2016-11-23/smoke.json +0 -11
  937. data/apis/storagegateway/2013-06-30/api-2.json +0 -3385
  938. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  939. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  940. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  941. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  942. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  943. data/apis/sts/2011-06-15/api-2.json +0 -598
  944. data/apis/sts/2011-06-15/examples-1.json +0 -271
  945. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  946. data/apis/sts/2011-06-15/smoke.json +0 -19
  947. data/apis/support/2013-04-15/api-2.json +0 -773
  948. data/apis/support/2013-04-15/examples-1.json +0 -5
  949. data/apis/support/2013-04-15/paginators-1.json +0 -25
  950. data/apis/support/2013-04-15/smoke.json +0 -22
  951. data/apis/swf/2012-01-25/api-2.json +0 -2792
  952. data/apis/swf/2012-01-25/examples-1.json +0 -5
  953. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  954. data/apis/synthetics/2017-10-11/api-2.json +0 -754
  955. data/apis/synthetics/2017-10-11/examples-1.json +0 -5
  956. data/apis/synthetics/2017-10-11/paginators-1.json +0 -24
  957. data/apis/textract/2018-06-27/api-2.json +0 -653
  958. data/apis/textract/2018-06-27/examples-1.json +0 -5
  959. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  960. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -272
  961. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  962. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  963. data/apis/transcribe/2017-10-26/api-2.json +0 -1115
  964. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  965. data/apis/transcribe/2017-10-26/paginators-1.json +0 -29
  966. data/apis/transfer/2018-11-05/api-2.json +0 -1001
  967. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  968. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  969. data/apis/translate/2017-07-01/api-2.json +0 -658
  970. data/apis/translate/2017-07-01/examples-1.json +0 -5
  971. data/apis/translate/2017-07-01/paginators-1.json +0 -14
  972. data/apis/waf-regional/2016-11-28/api-2.json +0 -4093
  973. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  974. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  975. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  976. data/apis/waf/2015-08-24/api-2.json +0 -3958
  977. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  978. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  979. data/apis/waf/2015-08-24/smoke.json +0 -21
  980. data/apis/wafv2/2019-07-29/api-2.json +0 -2637
  981. data/apis/wafv2/2019-07-29/examples-1.json +0 -5
  982. data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
  983. data/apis/wafv2/2019-07-29/smoke.json +0 -22
  984. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  985. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  986. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  987. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  988. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  989. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  990. data/apis/workmail/2017-10-01/api-2.json +0 -1918
  991. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  992. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  993. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  994. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  995. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  996. data/apis/workspaces/2015-04-08/api-2.json +0 -2029
  997. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  998. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  999. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  1000. data/apis/xray/2016-04-12/api-2.json +0 -1355
  1001. data/apis/xray/2016-04-12/examples-1.json +0 -5
  1002. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  1003. data/bin/aws.rb +0 -180
  1004. data/endpoints.json +0 -8026
  1005. data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
  1006. data/lib/aws-sdk-core/acm.rb +0 -7
  1007. data/lib/aws-sdk-core/acmpca.rb +0 -7
  1008. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  1009. data/lib/aws-sdk-core/amplify.rb +0 -6
  1010. data/lib/aws-sdk-core/api/builder.rb +0 -129
  1011. data/lib/aws-sdk-core/api/customizations.rb +0 -304
  1012. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  1013. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  1014. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  1015. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  1016. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  1017. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  1018. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  1019. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  1020. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  1021. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  1022. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  1023. data/lib/aws-sdk-core/apigateway.rb +0 -6
  1024. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  1025. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  1026. data/lib/aws-sdk-core/appconfig.rb +0 -6
  1027. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  1028. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  1029. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  1030. data/lib/aws-sdk-core/appmesh.rb +0 -6
  1031. data/lib/aws-sdk-core/appstream.rb +0 -7
  1032. data/lib/aws-sdk-core/appsync.rb +0 -6
  1033. data/lib/aws-sdk-core/athena.rb +0 -6
  1034. data/lib/aws-sdk-core/augmentedairuntime.rb +0 -6
  1035. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  1036. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  1037. data/lib/aws-sdk-core/backup.rb +0 -6
  1038. data/lib/aws-sdk-core/batch.rb +0 -6
  1039. data/lib/aws-sdk-core/budgets.rb +0 -6
  1040. data/lib/aws-sdk-core/checksums.rb +0 -51
  1041. data/lib/aws-sdk-core/chime.rb +0 -6
  1042. data/lib/aws-sdk-core/client.rb +0 -72
  1043. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  1044. data/lib/aws-sdk-core/cloud9.rb +0 -6
  1045. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  1046. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  1047. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  1048. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  1049. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  1050. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  1051. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  1052. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  1053. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  1054. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  1055. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  1056. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  1057. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  1058. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  1059. data/lib/aws-sdk-core/codebuild.rb +0 -6
  1060. data/lib/aws-sdk-core/codecommit.rb +0 -6
  1061. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  1062. data/lib/aws-sdk-core/codeguruprofiler.rb +0 -6
  1063. data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
  1064. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  1065. data/lib/aws-sdk-core/codestar.rb +0 -6
  1066. data/lib/aws-sdk-core/codestarconnections.rb +0 -6
  1067. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  1068. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  1069. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  1070. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  1071. data/lib/aws-sdk-core/comprehend.rb +0 -6
  1072. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  1073. data/lib/aws-sdk-core/computeoptimizer.rb +0 -6
  1074. data/lib/aws-sdk-core/configservice.rb +0 -6
  1075. data/lib/aws-sdk-core/connect.rb +0 -6
  1076. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  1077. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  1078. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1079. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1080. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1081. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1082. data/lib/aws-sdk-core/datasync.rb +0 -6
  1083. data/lib/aws-sdk-core/dax.rb +0 -6
  1084. data/lib/aws-sdk-core/detective.rb +0 -6
  1085. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1086. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1087. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1088. data/lib/aws-sdk-core/dlm.rb +0 -6
  1089. data/lib/aws-sdk-core/docdb.rb +0 -7
  1090. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1091. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1092. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1093. data/lib/aws-sdk-core/ebs.rb +0 -6
  1094. data/lib/aws-sdk-core/ec2.rb +0 -8
  1095. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1096. data/lib/aws-sdk-core/ecr.rb +0 -7
  1097. data/lib/aws-sdk-core/ecs.rb +0 -7
  1098. data/lib/aws-sdk-core/efs.rb +0 -6
  1099. data/lib/aws-sdk-core/eks.rb +0 -7
  1100. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1101. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1102. data/lib/aws-sdk-core/elasticinference.rb +0 -6
  1103. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1104. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1105. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1106. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1107. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1108. data/lib/aws-sdk-core/emr.rb +0 -7
  1109. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1110. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1111. data/lib/aws-sdk-core/firehose.rb +0 -6
  1112. data/lib/aws-sdk-core/fms.rb +0 -6
  1113. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1114. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1115. data/lib/aws-sdk-core/frauddetector.rb +0 -6
  1116. data/lib/aws-sdk-core/fsx.rb +0 -6
  1117. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1118. data/lib/aws-sdk-core/glacier.rb +0 -8
  1119. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1120. data/lib/aws-sdk-core/glue.rb +0 -6
  1121. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1122. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1123. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1124. data/lib/aws-sdk-core/health.rb +0 -6
  1125. data/lib/aws-sdk-core/iam.rb +0 -8
  1126. data/lib/aws-sdk-core/imagebuilder.rb +0 -6
  1127. data/lib/aws-sdk-core/importexport.rb +0 -5
  1128. data/lib/aws-sdk-core/inspector.rb +0 -6
  1129. data/lib/aws-sdk-core/iot.rb +0 -6
  1130. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1131. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1132. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1133. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1134. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1135. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1136. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1137. data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
  1138. data/lib/aws-sdk-core/iotsitewise.rb +0 -7
  1139. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1140. data/lib/aws-sdk-core/kafka.rb +0 -5
  1141. data/lib/aws-sdk-core/kendra.rb +0 -6
  1142. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1143. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1144. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1145. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1146. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1147. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1148. data/lib/aws-sdk-core/kinesisvideosignalingchannels.rb +0 -6
  1149. data/lib/aws-sdk-core/kms.rb +0 -6
  1150. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1151. data/lib/aws-sdk-core/lambda.rb +0 -7
  1152. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1153. data/lib/aws-sdk-core/lex.rb +0 -6
  1154. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1155. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1156. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1157. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1158. data/lib/aws-sdk-core/macie.rb +0 -6
  1159. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1160. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1161. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1162. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1163. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1164. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1165. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1166. data/lib/aws-sdk-core/medialive.rb +0 -6
  1167. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1168. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1169. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1170. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1171. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1172. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1173. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1174. data/lib/aws-sdk-core/mobile.rb +0 -6
  1175. data/lib/aws-sdk-core/mq.rb +0 -5
  1176. data/lib/aws-sdk-core/mturk.rb +0 -6
  1177. data/lib/aws-sdk-core/neptune.rb +0 -7
  1178. data/lib/aws-sdk-core/networkmanager.rb +0 -6
  1179. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1180. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1181. data/lib/aws-sdk-core/organizations.rb +0 -6
  1182. data/lib/aws-sdk-core/outposts.rb +0 -6
  1183. data/lib/aws-sdk-core/partitions.rb +0 -174
  1184. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1185. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1186. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1187. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1188. data/lib/aws-sdk-core/personalize.rb +0 -6
  1189. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1190. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1191. data/lib/aws-sdk-core/pi.rb +0 -6
  1192. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1193. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1194. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1195. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1196. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1197. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1198. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1199. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1200. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1201. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1202. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1203. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1204. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1205. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1206. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1207. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1208. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1209. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1210. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1211. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1212. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1213. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1214. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1215. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1216. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1217. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1218. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1219. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1220. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1221. data/lib/aws-sdk-core/plugins/s3_iad_regional_endpoint.rb +0 -58
  1222. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1223. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1224. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1225. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1226. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1227. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1228. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1229. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1230. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1231. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1232. data/lib/aws-sdk-core/polly.rb +0 -14
  1233. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1234. data/lib/aws-sdk-core/pricing.rb +0 -6
  1235. data/lib/aws-sdk-core/qldb.rb +0 -6
  1236. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1237. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1238. data/lib/aws-sdk-core/ram.rb +0 -6
  1239. data/lib/aws-sdk-core/rds.rb +0 -16
  1240. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1241. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1242. data/lib/aws-sdk-core/redshift.rb +0 -7
  1243. data/lib/aws-sdk-core/rekognition.rb +0 -7
  1244. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1245. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1246. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1247. data/lib/aws-sdk-core/route53.rb +0 -7
  1248. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1249. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1250. data/lib/aws-sdk-core/s3.rb +0 -26
  1251. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1252. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1253. data/lib/aws-sdk-core/s3control.rb +0 -6
  1254. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1255. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1256. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1257. data/lib/aws-sdk-core/schemas.rb +0 -6
  1258. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1259. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1260. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1261. data/lib/aws-sdk-core/service.rb +0 -4
  1262. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1263. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1264. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1265. data/lib/aws-sdk-core/ses.rb +0 -7
  1266. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1267. data/lib/aws-sdk-core/shield.rb +0 -6
  1268. data/lib/aws-sdk-core/signer.rb +0 -7
  1269. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1270. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1271. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1272. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1273. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1274. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1275. data/lib/aws-sdk-core/sms.rb +0 -6
  1276. data/lib/aws-sdk-core/snowball.rb +0 -6
  1277. data/lib/aws-sdk-core/sns.rb +0 -7
  1278. data/lib/aws-sdk-core/sqs.rb +0 -7
  1279. data/lib/aws-sdk-core/ssm.rb +0 -6
  1280. data/lib/aws-sdk-core/sso.rb +0 -6
  1281. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1282. data/lib/aws-sdk-core/states.rb +0 -6
  1283. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1284. data/lib/aws-sdk-core/sts.rb +0 -6
  1285. data/lib/aws-sdk-core/support.rb +0 -6
  1286. data/lib/aws-sdk-core/swf.rb +0 -6
  1287. data/lib/aws-sdk-core/synthetics.rb +0 -6
  1288. data/lib/aws-sdk-core/textract.rb +0 -6
  1289. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1290. data/lib/aws-sdk-core/transfer.rb +0 -6
  1291. data/lib/aws-sdk-core/translate.rb +0 -6
  1292. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1293. data/lib/aws-sdk-core/version.rb +0 -3
  1294. data/lib/aws-sdk-core/waf.rb +0 -6
  1295. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1296. data/lib/aws-sdk-core/wafv2.rb +0 -6
  1297. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1298. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1299. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1300. data/lib/aws-sdk-core/worklink.rb +0 -6
  1301. data/lib/aws-sdk-core/workmail.rb +0 -6
  1302. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1303. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1304. data/lib/aws-sdk-core/xray.rb +0 -6
  1305. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1306. data/service-models.json +0 -889
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,4 +0,0 @@
1
- {
2
- "pagination": {
3
- }
4
- }
@@ -1,388 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2018-10-05",
5
- "endpointPrefix":"api.tunneling.iot",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceFullName":"AWS IoT Secure Tunneling",
9
- "serviceId":"IoTSecureTunneling",
10
- "signatureVersion":"v4",
11
- "signingName":"IoTSecuredTunneling",
12
- "targetPrefix":"IoTSecuredTunneling",
13
- "uid":"iotsecuretunneling-2018-10-05"
14
- },
15
- "operations":{
16
- "CloseTunnel":{
17
- "name":"CloseTunnel",
18
- "http":{
19
- "method":"POST",
20
- "requestUri":"/"
21
- },
22
- "input":{"shape":"CloseTunnelRequest"},
23
- "output":{"shape":"CloseTunnelResponse"},
24
- "errors":[
25
- {"shape":"ResourceNotFoundException"}
26
- ]
27
- },
28
- "DescribeTunnel":{
29
- "name":"DescribeTunnel",
30
- "http":{
31
- "method":"POST",
32
- "requestUri":"/"
33
- },
34
- "input":{"shape":"DescribeTunnelRequest"},
35
- "output":{"shape":"DescribeTunnelResponse"},
36
- "errors":[
37
- {"shape":"ResourceNotFoundException"}
38
- ]
39
- },
40
- "ListTagsForResource":{
41
- "name":"ListTagsForResource",
42
- "http":{
43
- "method":"POST",
44
- "requestUri":"/"
45
- },
46
- "input":{"shape":"ListTagsForResourceRequest"},
47
- "output":{"shape":"ListTagsForResourceResponse"},
48
- "errors":[
49
- {"shape":"ResourceNotFoundException"}
50
- ]
51
- },
52
- "ListTunnels":{
53
- "name":"ListTunnels",
54
- "http":{
55
- "method":"POST",
56
- "requestUri":"/"
57
- },
58
- "input":{"shape":"ListTunnelsRequest"},
59
- "output":{"shape":"ListTunnelsResponse"}
60
- },
61
- "OpenTunnel":{
62
- "name":"OpenTunnel",
63
- "http":{
64
- "method":"POST",
65
- "requestUri":"/"
66
- },
67
- "input":{"shape":"OpenTunnelRequest"},
68
- "output":{"shape":"OpenTunnelResponse"},
69
- "errors":[
70
- {"shape":"LimitExceededException"}
71
- ]
72
- },
73
- "TagResource":{
74
- "name":"TagResource",
75
- "http":{
76
- "method":"POST",
77
- "requestUri":"/"
78
- },
79
- "input":{"shape":"TagResourceRequest"},
80
- "output":{"shape":"TagResourceResponse"},
81
- "errors":[
82
- {"shape":"ResourceNotFoundException"}
83
- ]
84
- },
85
- "UntagResource":{
86
- "name":"UntagResource",
87
- "http":{
88
- "method":"POST",
89
- "requestUri":"/"
90
- },
91
- "input":{"shape":"UntagResourceRequest"},
92
- "output":{"shape":"UntagResourceResponse"},
93
- "errors":[
94
- {"shape":"ResourceNotFoundException"}
95
- ]
96
- }
97
- },
98
- "shapes":{
99
- "AmazonResourceName":{
100
- "type":"string",
101
- "max":1011,
102
- "min":1
103
- },
104
- "ClientAccessToken":{
105
- "type":"string",
106
- "sensitive":true
107
- },
108
- "CloseTunnelRequest":{
109
- "type":"structure",
110
- "required":["tunnelId"],
111
- "members":{
112
- "tunnelId":{"shape":"TunnelId"},
113
- "delete":{
114
- "shape":"DeleteFlag",
115
- "box":true
116
- }
117
- }
118
- },
119
- "CloseTunnelResponse":{
120
- "type":"structure",
121
- "members":{
122
- }
123
- },
124
- "ConnectionState":{
125
- "type":"structure",
126
- "members":{
127
- "status":{"shape":"ConnectionStatus"},
128
- "lastUpdatedAt":{"shape":"DateType"}
129
- }
130
- },
131
- "ConnectionStatus":{
132
- "type":"string",
133
- "enum":[
134
- "CONNECTED",
135
- "DISCONNECTED"
136
- ]
137
- },
138
- "DateType":{"type":"timestamp"},
139
- "DeleteFlag":{"type":"boolean"},
140
- "DescribeTunnelRequest":{
141
- "type":"structure",
142
- "required":["tunnelId"],
143
- "members":{
144
- "tunnelId":{"shape":"TunnelId"}
145
- }
146
- },
147
- "DescribeTunnelResponse":{
148
- "type":"structure",
149
- "members":{
150
- "tunnel":{"shape":"Tunnel"}
151
- }
152
- },
153
- "Description":{
154
- "type":"string",
155
- "pattern":"[^\\p{C}]{1,2048}"
156
- },
157
- "DestinationConfig":{
158
- "type":"structure",
159
- "required":[
160
- "thingName",
161
- "services"
162
- ],
163
- "members":{
164
- "thingName":{"shape":"ThingName"},
165
- "services":{"shape":"ServiceList"}
166
- }
167
- },
168
- "ErrorMessage":{"type":"string"},
169
- "LimitExceededException":{
170
- "type":"structure",
171
- "members":{
172
- "message":{"shape":"ErrorMessage"}
173
- },
174
- "exception":true
175
- },
176
- "ListTagsForResourceRequest":{
177
- "type":"structure",
178
- "required":["resourceArn"],
179
- "members":{
180
- "resourceArn":{"shape":"AmazonResourceName"}
181
- }
182
- },
183
- "ListTagsForResourceResponse":{
184
- "type":"structure",
185
- "members":{
186
- "tags":{"shape":"TagList"}
187
- }
188
- },
189
- "ListTunnelsRequest":{
190
- "type":"structure",
191
- "members":{
192
- "thingName":{"shape":"ThingName"},
193
- "maxResults":{
194
- "shape":"MaxResults",
195
- "box":true
196
- },
197
- "nextToken":{"shape":"NextToken"}
198
- }
199
- },
200
- "ListTunnelsResponse":{
201
- "type":"structure",
202
- "members":{
203
- "tunnelSummaries":{"shape":"TunnelSummaryList"},
204
- "nextToken":{"shape":"NextToken"}
205
- }
206
- },
207
- "MaxResults":{
208
- "type":"integer",
209
- "max":100,
210
- "min":1
211
- },
212
- "NextToken":{
213
- "type":"string",
214
- "pattern":"[a-zA-Z0-9_=-]{1,4096}"
215
- },
216
- "OpenTunnelRequest":{
217
- "type":"structure",
218
- "members":{
219
- "description":{"shape":"Description"},
220
- "tags":{"shape":"TagList"},
221
- "destinationConfig":{"shape":"DestinationConfig"},
222
- "timeoutConfig":{"shape":"TimeoutConfig"}
223
- }
224
- },
225
- "OpenTunnelResponse":{
226
- "type":"structure",
227
- "members":{
228
- "tunnelId":{"shape":"TunnelId"},
229
- "tunnelArn":{"shape":"TunnelArn"},
230
- "sourceAccessToken":{"shape":"ClientAccessToken"},
231
- "destinationAccessToken":{"shape":"ClientAccessToken"}
232
- }
233
- },
234
- "ResourceNotFoundException":{
235
- "type":"structure",
236
- "members":{
237
- "message":{"shape":"ErrorMessage"}
238
- },
239
- "exception":true
240
- },
241
- "Service":{
242
- "type":"string",
243
- "max":8,
244
- "min":1,
245
- "pattern":"[a-zA-Z0-9:_-]+"
246
- },
247
- "ServiceList":{
248
- "type":"list",
249
- "member":{"shape":"Service"},
250
- "max":1,
251
- "min":1
252
- },
253
- "Tag":{
254
- "type":"structure",
255
- "required":[
256
- "key",
257
- "value"
258
- ],
259
- "members":{
260
- "key":{"shape":"TagKey"},
261
- "value":{"shape":"TagValue"}
262
- }
263
- },
264
- "TagKey":{
265
- "type":"string",
266
- "max":128,
267
- "min":1,
268
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
269
- },
270
- "TagKeyList":{
271
- "type":"list",
272
- "member":{"shape":"TagKey"},
273
- "max":200,
274
- "min":0
275
- },
276
- "TagList":{
277
- "type":"list",
278
- "member":{"shape":"Tag"},
279
- "max":200,
280
- "min":1
281
- },
282
- "TagResourceRequest":{
283
- "type":"structure",
284
- "required":[
285
- "resourceArn",
286
- "tags"
287
- ],
288
- "members":{
289
- "resourceArn":{"shape":"AmazonResourceName"},
290
- "tags":{"shape":"TagList"}
291
- }
292
- },
293
- "TagResourceResponse":{
294
- "type":"structure",
295
- "members":{
296
- }
297
- },
298
- "TagValue":{
299
- "type":"string",
300
- "max":256,
301
- "min":0,
302
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
303
- },
304
- "ThingName":{
305
- "type":"string",
306
- "max":128,
307
- "min":1,
308
- "pattern":"[a-zA-Z0-9:_-]+"
309
- },
310
- "TimeoutConfig":{
311
- "type":"structure",
312
- "members":{
313
- "maxLifetimeTimeoutMinutes":{
314
- "shape":"TimeoutInMin",
315
- "box":true
316
- }
317
- }
318
- },
319
- "TimeoutInMin":{
320
- "type":"integer",
321
- "max":720,
322
- "min":1
323
- },
324
- "Tunnel":{
325
- "type":"structure",
326
- "members":{
327
- "tunnelId":{"shape":"TunnelId"},
328
- "tunnelArn":{"shape":"TunnelArn"},
329
- "status":{"shape":"TunnelStatus"},
330
- "sourceConnectionState":{"shape":"ConnectionState"},
331
- "destinationConnectionState":{"shape":"ConnectionState"},
332
- "description":{"shape":"Description"},
333
- "destinationConfig":{"shape":"DestinationConfig"},
334
- "timeoutConfig":{"shape":"TimeoutConfig"},
335
- "tags":{"shape":"TagList"},
336
- "createdAt":{"shape":"DateType"},
337
- "lastUpdatedAt":{"shape":"DateType"}
338
- }
339
- },
340
- "TunnelArn":{
341
- "type":"string",
342
- "max":1600,
343
- "min":1
344
- },
345
- "TunnelId":{
346
- "type":"string",
347
- "pattern":"[a-zA-Z0-9_\\-+=:]{1,128}"
348
- },
349
- "TunnelStatus":{
350
- "type":"string",
351
- "enum":[
352
- "OPEN",
353
- "CLOSED"
354
- ]
355
- },
356
- "TunnelSummary":{
357
- "type":"structure",
358
- "members":{
359
- "tunnelId":{"shape":"TunnelId"},
360
- "tunnelArn":{"shape":"TunnelArn"},
361
- "status":{"shape":"TunnelStatus"},
362
- "description":{"shape":"Description"},
363
- "createdAt":{"shape":"DateType"},
364
- "lastUpdatedAt":{"shape":"DateType"}
365
- }
366
- },
367
- "TunnelSummaryList":{
368
- "type":"list",
369
- "member":{"shape":"TunnelSummary"}
370
- },
371
- "UntagResourceRequest":{
372
- "type":"structure",
373
- "required":[
374
- "resourceArn",
375
- "tagKeys"
376
- ],
377
- "members":{
378
- "resourceArn":{"shape":"AmazonResourceName"},
379
- "tagKeys":{"shape":"TagKeyList"}
380
- }
381
- },
382
- "UntagResourceResponse":{
383
- "type":"structure",
384
- "members":{
385
- }
386
- }
387
- }
388
- }
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,9 +0,0 @@
1
- {
2
- "pagination": {
3
- "ListTunnels": {
4
- "input_token": "nextToken",
5
- "output_token": "nextToken",
6
- "limit_key": "maxResults"
7
- }
8
- }
9
- }
@@ -1,3580 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2019-12-02",
5
- "endpointPrefix":"iotsitewise",
6
- "jsonVersion":"1.1",
7
- "protocol":"rest-json",
8
- "serviceFullName":"AWS IoT SiteWise",
9
- "serviceId":"IoTSiteWise",
10
- "signatureVersion":"v4",
11
- "signingName":"iotsitewise",
12
- "uid":"iotsitewise-2019-12-02"
13
- },
14
- "operations":{
15
- "AssociateAssets":{
16
- "name":"AssociateAssets",
17
- "http":{
18
- "method":"POST",
19
- "requestUri":"/assets/{assetId}/associate"
20
- },
21
- "input":{"shape":"AssociateAssetsRequest"},
22
- "errors":[
23
- {"shape":"InvalidRequestException"},
24
- {"shape":"ResourceNotFoundException"},
25
- {"shape":"InternalFailureException"},
26
- {"shape":"LimitExceededException"},
27
- {"shape":"ThrottlingException"},
28
- {"shape":"ConflictingOperationException"}
29
- ],
30
- "endpoint":{"hostPrefix":"model."}
31
- },
32
- "BatchAssociateProjectAssets":{
33
- "name":"BatchAssociateProjectAssets",
34
- "http":{
35
- "method":"POST",
36
- "requestUri":"/projects/{projectId}/assets/associate",
37
- "responseCode":200
38
- },
39
- "input":{"shape":"BatchAssociateProjectAssetsRequest"},
40
- "output":{"shape":"BatchAssociateProjectAssetsResponse"},
41
- "errors":[
42
- {"shape":"InvalidRequestException"},
43
- {"shape":"ResourceNotFoundException"},
44
- {"shape":"InternalFailureException"},
45
- {"shape":"ThrottlingException"},
46
- {"shape":"LimitExceededException"}
47
- ],
48
- "endpoint":{"hostPrefix":"monitor."}
49
- },
50
- "BatchDisassociateProjectAssets":{
51
- "name":"BatchDisassociateProjectAssets",
52
- "http":{
53
- "method":"POST",
54
- "requestUri":"/projects/{projectId}/assets/disassociate",
55
- "responseCode":200
56
- },
57
- "input":{"shape":"BatchDisassociateProjectAssetsRequest"},
58
- "output":{"shape":"BatchDisassociateProjectAssetsResponse"},
59
- "errors":[
60
- {"shape":"InvalidRequestException"},
61
- {"shape":"ResourceNotFoundException"},
62
- {"shape":"InternalFailureException"},
63
- {"shape":"ThrottlingException"}
64
- ],
65
- "endpoint":{"hostPrefix":"monitor."}
66
- },
67
- "BatchPutAssetPropertyValue":{
68
- "name":"BatchPutAssetPropertyValue",
69
- "http":{
70
- "method":"POST",
71
- "requestUri":"/properties"
72
- },
73
- "input":{"shape":"BatchPutAssetPropertyValueRequest"},
74
- "output":{"shape":"BatchPutAssetPropertyValueResponse"},
75
- "errors":[
76
- {"shape":"InvalidRequestException"},
77
- {"shape":"ResourceNotFoundException"},
78
- {"shape":"InternalFailureException"},
79
- {"shape":"ThrottlingException"},
80
- {"shape":"LimitExceededException"},
81
- {"shape":"ServiceUnavailableException"},
82
- {"shape":"ConflictingOperationException"}
83
- ],
84
- "endpoint":{"hostPrefix":"data."}
85
- },
86
- "CreateAccessPolicy":{
87
- "name":"CreateAccessPolicy",
88
- "http":{
89
- "method":"POST",
90
- "requestUri":"/access-policies",
91
- "responseCode":201
92
- },
93
- "input":{"shape":"CreateAccessPolicyRequest"},
94
- "output":{"shape":"CreateAccessPolicyResponse"},
95
- "errors":[
96
- {"shape":"InvalidRequestException"},
97
- {"shape":"ResourceNotFoundException"},
98
- {"shape":"InternalFailureException"},
99
- {"shape":"ThrottlingException"},
100
- {"shape":"LimitExceededException"}
101
- ],
102
- "endpoint":{"hostPrefix":"monitor."}
103
- },
104
- "CreateAsset":{
105
- "name":"CreateAsset",
106
- "http":{
107
- "method":"POST",
108
- "requestUri":"/assets",
109
- "responseCode":202
110
- },
111
- "input":{"shape":"CreateAssetRequest"},
112
- "output":{"shape":"CreateAssetResponse"},
113
- "errors":[
114
- {"shape":"InvalidRequestException"},
115
- {"shape":"ResourceAlreadyExistsException"},
116
- {"shape":"ResourceNotFoundException"},
117
- {"shape":"InternalFailureException"},
118
- {"shape":"ThrottlingException"},
119
- {"shape":"LimitExceededException"},
120
- {"shape":"ConflictingOperationException"}
121
- ],
122
- "endpoint":{"hostPrefix":"model."}
123
- },
124
- "CreateAssetModel":{
125
- "name":"CreateAssetModel",
126
- "http":{
127
- "method":"POST",
128
- "requestUri":"/asset-models",
129
- "responseCode":202
130
- },
131
- "input":{"shape":"CreateAssetModelRequest"},
132
- "output":{"shape":"CreateAssetModelResponse"},
133
- "errors":[
134
- {"shape":"InvalidRequestException"},
135
- {"shape":"ResourceAlreadyExistsException"},
136
- {"shape":"ResourceNotFoundException"},
137
- {"shape":"InternalFailureException"},
138
- {"shape":"ThrottlingException"},
139
- {"shape":"LimitExceededException"},
140
- {"shape":"ConflictingOperationException"}
141
- ],
142
- "endpoint":{"hostPrefix":"model."}
143
- },
144
- "CreateDashboard":{
145
- "name":"CreateDashboard",
146
- "http":{
147
- "method":"POST",
148
- "requestUri":"/dashboards",
149
- "responseCode":201
150
- },
151
- "input":{"shape":"CreateDashboardRequest"},
152
- "output":{"shape":"CreateDashboardResponse"},
153
- "errors":[
154
- {"shape":"InvalidRequestException"},
155
- {"shape":"ResourceNotFoundException"},
156
- {"shape":"InternalFailureException"},
157
- {"shape":"ThrottlingException"},
158
- {"shape":"LimitExceededException"}
159
- ],
160
- "endpoint":{"hostPrefix":"monitor."}
161
- },
162
- "CreateGateway":{
163
- "name":"CreateGateway",
164
- "http":{
165
- "method":"POST",
166
- "requestUri":"/20200301/gateways",
167
- "responseCode":201
168
- },
169
- "input":{"shape":"CreateGatewayRequest"},
170
- "output":{"shape":"CreateGatewayResponse"},
171
- "errors":[
172
- {"shape":"InvalidRequestException"},
173
- {"shape":"ResourceAlreadyExistsException"},
174
- {"shape":"InternalFailureException"},
175
- {"shape":"ThrottlingException"},
176
- {"shape":"LimitExceededException"}
177
- ],
178
- "endpoint":{"hostPrefix":"edge."}
179
- },
180
- "CreatePortal":{
181
- "name":"CreatePortal",
182
- "http":{
183
- "method":"POST",
184
- "requestUri":"/portals",
185
- "responseCode":202
186
- },
187
- "input":{"shape":"CreatePortalRequest"},
188
- "output":{"shape":"CreatePortalResponse"},
189
- "errors":[
190
- {"shape":"InvalidRequestException"},
191
- {"shape":"ResourceNotFoundException"},
192
- {"shape":"InternalFailureException"},
193
- {"shape":"ThrottlingException"},
194
- {"shape":"LimitExceededException"}
195
- ],
196
- "endpoint":{"hostPrefix":"monitor."}
197
- },
198
- "CreateProject":{
199
- "name":"CreateProject",
200
- "http":{
201
- "method":"POST",
202
- "requestUri":"/projects",
203
- "responseCode":201
204
- },
205
- "input":{"shape":"CreateProjectRequest"},
206
- "output":{"shape":"CreateProjectResponse"},
207
- "errors":[
208
- {"shape":"InvalidRequestException"},
209
- {"shape":"ResourceNotFoundException"},
210
- {"shape":"InternalFailureException"},
211
- {"shape":"ThrottlingException"},
212
- {"shape":"LimitExceededException"}
213
- ],
214
- "endpoint":{"hostPrefix":"monitor."}
215
- },
216
- "DeleteAccessPolicy":{
217
- "name":"DeleteAccessPolicy",
218
- "http":{
219
- "method":"DELETE",
220
- "requestUri":"/access-policies/{accessPolicyId}",
221
- "responseCode":204
222
- },
223
- "input":{"shape":"DeleteAccessPolicyRequest"},
224
- "output":{"shape":"DeleteAccessPolicyResponse"},
225
- "errors":[
226
- {"shape":"InvalidRequestException"},
227
- {"shape":"ResourceNotFoundException"},
228
- {"shape":"InternalFailureException"},
229
- {"shape":"ThrottlingException"}
230
- ],
231
- "endpoint":{"hostPrefix":"monitor."}
232
- },
233
- "DeleteAsset":{
234
- "name":"DeleteAsset",
235
- "http":{
236
- "method":"DELETE",
237
- "requestUri":"/assets/{assetId}",
238
- "responseCode":202
239
- },
240
- "input":{"shape":"DeleteAssetRequest"},
241
- "output":{"shape":"DeleteAssetResponse"},
242
- "errors":[
243
- {"shape":"InvalidRequestException"},
244
- {"shape":"ResourceNotFoundException"},
245
- {"shape":"InternalFailureException"},
246
- {"shape":"ThrottlingException"},
247
- {"shape":"ConflictingOperationException"}
248
- ],
249
- "endpoint":{"hostPrefix":"model."}
250
- },
251
- "DeleteAssetModel":{
252
- "name":"DeleteAssetModel",
253
- "http":{
254
- "method":"DELETE",
255
- "requestUri":"/asset-models/{assetModelId}",
256
- "responseCode":202
257
- },
258
- "input":{"shape":"DeleteAssetModelRequest"},
259
- "output":{"shape":"DeleteAssetModelResponse"},
260
- "errors":[
261
- {"shape":"InvalidRequestException"},
262
- {"shape":"ResourceNotFoundException"},
263
- {"shape":"InternalFailureException"},
264
- {"shape":"ThrottlingException"},
265
- {"shape":"ConflictingOperationException"}
266
- ],
267
- "endpoint":{"hostPrefix":"model."}
268
- },
269
- "DeleteDashboard":{
270
- "name":"DeleteDashboard",
271
- "http":{
272
- "method":"DELETE",
273
- "requestUri":"/dashboards/{dashboardId}",
274
- "responseCode":204
275
- },
276
- "input":{"shape":"DeleteDashboardRequest"},
277
- "output":{"shape":"DeleteDashboardResponse"},
278
- "errors":[
279
- {"shape":"InvalidRequestException"},
280
- {"shape":"ResourceNotFoundException"},
281
- {"shape":"InternalFailureException"},
282
- {"shape":"ThrottlingException"}
283
- ],
284
- "endpoint":{"hostPrefix":"monitor."}
285
- },
286
- "DeleteGateway":{
287
- "name":"DeleteGateway",
288
- "http":{
289
- "method":"DELETE",
290
- "requestUri":"/20200301/gateways/{gatewayId}"
291
- },
292
- "input":{"shape":"DeleteGatewayRequest"},
293
- "errors":[
294
- {"shape":"InvalidRequestException"},
295
- {"shape":"ResourceNotFoundException"},
296
- {"shape":"InternalFailureException"},
297
- {"shape":"ThrottlingException"}
298
- ],
299
- "endpoint":{"hostPrefix":"edge."}
300
- },
301
- "DeletePortal":{
302
- "name":"DeletePortal",
303
- "http":{
304
- "method":"DELETE",
305
- "requestUri":"/portals/{portalId}",
306
- "responseCode":202
307
- },
308
- "input":{"shape":"DeletePortalRequest"},
309
- "output":{"shape":"DeletePortalResponse"},
310
- "errors":[
311
- {"shape":"InvalidRequestException"},
312
- {"shape":"ResourceNotFoundException"},
313
- {"shape":"InternalFailureException"},
314
- {"shape":"ThrottlingException"},
315
- {"shape":"ConflictingOperationException"}
316
- ],
317
- "endpoint":{"hostPrefix":"monitor."}
318
- },
319
- "DeleteProject":{
320
- "name":"DeleteProject",
321
- "http":{
322
- "method":"DELETE",
323
- "requestUri":"/projects/{projectId}",
324
- "responseCode":204
325
- },
326
- "input":{"shape":"DeleteProjectRequest"},
327
- "output":{"shape":"DeleteProjectResponse"},
328
- "errors":[
329
- {"shape":"InvalidRequestException"},
330
- {"shape":"ResourceNotFoundException"},
331
- {"shape":"InternalFailureException"},
332
- {"shape":"ThrottlingException"}
333
- ],
334
- "endpoint":{"hostPrefix":"monitor."}
335
- },
336
- "DescribeAccessPolicy":{
337
- "name":"DescribeAccessPolicy",
338
- "http":{
339
- "method":"GET",
340
- "requestUri":"/access-policies/{accessPolicyId}",
341
- "responseCode":200
342
- },
343
- "input":{"shape":"DescribeAccessPolicyRequest"},
344
- "output":{"shape":"DescribeAccessPolicyResponse"},
345
- "errors":[
346
- {"shape":"InvalidRequestException"},
347
- {"shape":"ResourceNotFoundException"},
348
- {"shape":"InternalFailureException"},
349
- {"shape":"ThrottlingException"}
350
- ],
351
- "endpoint":{"hostPrefix":"monitor."}
352
- },
353
- "DescribeAsset":{
354
- "name":"DescribeAsset",
355
- "http":{
356
- "method":"GET",
357
- "requestUri":"/assets/{assetId}"
358
- },
359
- "input":{"shape":"DescribeAssetRequest"},
360
- "output":{"shape":"DescribeAssetResponse"},
361
- "errors":[
362
- {"shape":"InvalidRequestException"},
363
- {"shape":"ResourceNotFoundException"},
364
- {"shape":"InternalFailureException"},
365
- {"shape":"ThrottlingException"}
366
- ],
367
- "endpoint":{"hostPrefix":"model."}
368
- },
369
- "DescribeAssetModel":{
370
- "name":"DescribeAssetModel",
371
- "http":{
372
- "method":"GET",
373
- "requestUri":"/asset-models/{assetModelId}"
374
- },
375
- "input":{"shape":"DescribeAssetModelRequest"},
376
- "output":{"shape":"DescribeAssetModelResponse"},
377
- "errors":[
378
- {"shape":"InvalidRequestException"},
379
- {"shape":"ResourceNotFoundException"},
380
- {"shape":"InternalFailureException"},
381
- {"shape":"ThrottlingException"}
382
- ],
383
- "endpoint":{"hostPrefix":"model."}
384
- },
385
- "DescribeAssetProperty":{
386
- "name":"DescribeAssetProperty",
387
- "http":{
388
- "method":"GET",
389
- "requestUri":"/assets/{assetId}/properties/{propertyId}"
390
- },
391
- "input":{"shape":"DescribeAssetPropertyRequest"},
392
- "output":{"shape":"DescribeAssetPropertyResponse"},
393
- "errors":[
394
- {"shape":"InvalidRequestException"},
395
- {"shape":"ResourceNotFoundException"},
396
- {"shape":"InternalFailureException"},
397
- {"shape":"ThrottlingException"}
398
- ],
399
- "endpoint":{"hostPrefix":"model."}
400
- },
401
- "DescribeDashboard":{
402
- "name":"DescribeDashboard",
403
- "http":{
404
- "method":"GET",
405
- "requestUri":"/dashboards/{dashboardId}",
406
- "responseCode":200
407
- },
408
- "input":{"shape":"DescribeDashboardRequest"},
409
- "output":{"shape":"DescribeDashboardResponse"},
410
- "errors":[
411
- {"shape":"InvalidRequestException"},
412
- {"shape":"ResourceNotFoundException"},
413
- {"shape":"InternalFailureException"},
414
- {"shape":"ThrottlingException"}
415
- ],
416
- "endpoint":{"hostPrefix":"monitor."}
417
- },
418
- "DescribeGateway":{
419
- "name":"DescribeGateway",
420
- "http":{
421
- "method":"GET",
422
- "requestUri":"/20200301/gateways/{gatewayId}"
423
- },
424
- "input":{"shape":"DescribeGatewayRequest"},
425
- "output":{"shape":"DescribeGatewayResponse"},
426
- "errors":[
427
- {"shape":"InvalidRequestException"},
428
- {"shape":"ResourceNotFoundException"},
429
- {"shape":"InternalFailureException"},
430
- {"shape":"ThrottlingException"}
431
- ],
432
- "endpoint":{"hostPrefix":"edge."}
433
- },
434
- "DescribeGatewayCapabilityConfiguration":{
435
- "name":"DescribeGatewayCapabilityConfiguration",
436
- "http":{
437
- "method":"GET",
438
- "requestUri":"/20200301/gateways/{gatewayId}/capability/{capabilityNamespace}"
439
- },
440
- "input":{"shape":"DescribeGatewayCapabilityConfigurationRequest"},
441
- "output":{"shape":"DescribeGatewayCapabilityConfigurationResponse"},
442
- "errors":[
443
- {"shape":"InvalidRequestException"},
444
- {"shape":"ResourceNotFoundException"},
445
- {"shape":"InternalFailureException"},
446
- {"shape":"ThrottlingException"}
447
- ],
448
- "endpoint":{"hostPrefix":"edge."}
449
- },
450
- "DescribeLoggingOptions":{
451
- "name":"DescribeLoggingOptions",
452
- "http":{
453
- "method":"GET",
454
- "requestUri":"/logging"
455
- },
456
- "input":{"shape":"DescribeLoggingOptionsRequest"},
457
- "output":{"shape":"DescribeLoggingOptionsResponse"},
458
- "errors":[
459
- {"shape":"InvalidRequestException"},
460
- {"shape":"ThrottlingException"},
461
- {"shape":"InternalFailureException"},
462
- {"shape":"ResourceNotFoundException"}
463
- ],
464
- "endpoint":{"hostPrefix":"model."}
465
- },
466
- "DescribePortal":{
467
- "name":"DescribePortal",
468
- "http":{
469
- "method":"GET",
470
- "requestUri":"/portals/{portalId}",
471
- "responseCode":200
472
- },
473
- "input":{"shape":"DescribePortalRequest"},
474
- "output":{"shape":"DescribePortalResponse"},
475
- "errors":[
476
- {"shape":"InvalidRequestException"},
477
- {"shape":"ResourceNotFoundException"},
478
- {"shape":"InternalFailureException"},
479
- {"shape":"ThrottlingException"}
480
- ],
481
- "endpoint":{"hostPrefix":"monitor."}
482
- },
483
- "DescribeProject":{
484
- "name":"DescribeProject",
485
- "http":{
486
- "method":"GET",
487
- "requestUri":"/projects/{projectId}",
488
- "responseCode":200
489
- },
490
- "input":{"shape":"DescribeProjectRequest"},
491
- "output":{"shape":"DescribeProjectResponse"},
492
- "errors":[
493
- {"shape":"InvalidRequestException"},
494
- {"shape":"ResourceNotFoundException"},
495
- {"shape":"InternalFailureException"},
496
- {"shape":"ThrottlingException"}
497
- ],
498
- "endpoint":{"hostPrefix":"monitor."}
499
- },
500
- "DisassociateAssets":{
501
- "name":"DisassociateAssets",
502
- "http":{
503
- "method":"POST",
504
- "requestUri":"/assets/{assetId}/disassociate"
505
- },
506
- "input":{"shape":"DisassociateAssetsRequest"},
507
- "errors":[
508
- {"shape":"InvalidRequestException"},
509
- {"shape":"ResourceNotFoundException"},
510
- {"shape":"InternalFailureException"},
511
- {"shape":"ThrottlingException"},
512
- {"shape":"ConflictingOperationException"}
513
- ],
514
- "endpoint":{"hostPrefix":"model."}
515
- },
516
- "GetAssetPropertyAggregates":{
517
- "name":"GetAssetPropertyAggregates",
518
- "http":{
519
- "method":"GET",
520
- "requestUri":"/properties/aggregates"
521
- },
522
- "input":{"shape":"GetAssetPropertyAggregatesRequest"},
523
- "output":{"shape":"GetAssetPropertyAggregatesResponse"},
524
- "errors":[
525
- {"shape":"InvalidRequestException"},
526
- {"shape":"ResourceNotFoundException"},
527
- {"shape":"InternalFailureException"},
528
- {"shape":"ThrottlingException"},
529
- {"shape":"ServiceUnavailableException"}
530
- ],
531
- "endpoint":{"hostPrefix":"data."}
532
- },
533
- "GetAssetPropertyValue":{
534
- "name":"GetAssetPropertyValue",
535
- "http":{
536
- "method":"GET",
537
- "requestUri":"/properties/latest"
538
- },
539
- "input":{"shape":"GetAssetPropertyValueRequest"},
540
- "output":{"shape":"GetAssetPropertyValueResponse"},
541
- "errors":[
542
- {"shape":"InvalidRequestException"},
543
- {"shape":"ResourceNotFoundException"},
544
- {"shape":"InternalFailureException"},
545
- {"shape":"ThrottlingException"},
546
- {"shape":"ServiceUnavailableException"}
547
- ],
548
- "endpoint":{"hostPrefix":"data."}
549
- },
550
- "GetAssetPropertyValueHistory":{
551
- "name":"GetAssetPropertyValueHistory",
552
- "http":{
553
- "method":"GET",
554
- "requestUri":"/properties/history"
555
- },
556
- "input":{"shape":"GetAssetPropertyValueHistoryRequest"},
557
- "output":{"shape":"GetAssetPropertyValueHistoryResponse"},
558
- "errors":[
559
- {"shape":"InvalidRequestException"},
560
- {"shape":"ResourceNotFoundException"},
561
- {"shape":"InternalFailureException"},
562
- {"shape":"ThrottlingException"},
563
- {"shape":"ServiceUnavailableException"}
564
- ],
565
- "endpoint":{"hostPrefix":"data."}
566
- },
567
- "ListAccessPolicies":{
568
- "name":"ListAccessPolicies",
569
- "http":{
570
- "method":"GET",
571
- "requestUri":"/access-policies",
572
- "responseCode":200
573
- },
574
- "input":{"shape":"ListAccessPoliciesRequest"},
575
- "output":{"shape":"ListAccessPoliciesResponse"},
576
- "errors":[
577
- {"shape":"InvalidRequestException"},
578
- {"shape":"InternalFailureException"},
579
- {"shape":"ThrottlingException"}
580
- ],
581
- "endpoint":{"hostPrefix":"monitor."}
582
- },
583
- "ListAssetModels":{
584
- "name":"ListAssetModels",
585
- "http":{
586
- "method":"GET",
587
- "requestUri":"/asset-models"
588
- },
589
- "input":{"shape":"ListAssetModelsRequest"},
590
- "output":{"shape":"ListAssetModelsResponse"},
591
- "errors":[
592
- {"shape":"InvalidRequestException"},
593
- {"shape":"InternalFailureException"},
594
- {"shape":"ThrottlingException"}
595
- ],
596
- "endpoint":{"hostPrefix":"model."}
597
- },
598
- "ListAssets":{
599
- "name":"ListAssets",
600
- "http":{
601
- "method":"GET",
602
- "requestUri":"/assets"
603
- },
604
- "input":{"shape":"ListAssetsRequest"},
605
- "output":{"shape":"ListAssetsResponse"},
606
- "errors":[
607
- {"shape":"InvalidRequestException"},
608
- {"shape":"InternalFailureException"},
609
- {"shape":"ResourceNotFoundException"},
610
- {"shape":"ThrottlingException"}
611
- ],
612
- "endpoint":{"hostPrefix":"model."}
613
- },
614
- "ListAssociatedAssets":{
615
- "name":"ListAssociatedAssets",
616
- "http":{
617
- "method":"GET",
618
- "requestUri":"/assets/{assetId}/hierarchies"
619
- },
620
- "input":{"shape":"ListAssociatedAssetsRequest"},
621
- "output":{"shape":"ListAssociatedAssetsResponse"},
622
- "errors":[
623
- {"shape":"InvalidRequestException"},
624
- {"shape":"InternalFailureException"},
625
- {"shape":"ResourceNotFoundException"},
626
- {"shape":"ThrottlingException"}
627
- ],
628
- "endpoint":{"hostPrefix":"model."}
629
- },
630
- "ListDashboards":{
631
- "name":"ListDashboards",
632
- "http":{
633
- "method":"GET",
634
- "requestUri":"/dashboards",
635
- "responseCode":200
636
- },
637
- "input":{"shape":"ListDashboardsRequest"},
638
- "output":{"shape":"ListDashboardsResponse"},
639
- "errors":[
640
- {"shape":"InvalidRequestException"},
641
- {"shape":"InternalFailureException"},
642
- {"shape":"ThrottlingException"}
643
- ],
644
- "endpoint":{"hostPrefix":"monitor."}
645
- },
646
- "ListGateways":{
647
- "name":"ListGateways",
648
- "http":{
649
- "method":"GET",
650
- "requestUri":"/20200301/gateways"
651
- },
652
- "input":{"shape":"ListGatewaysRequest"},
653
- "output":{"shape":"ListGatewaysResponse"},
654
- "errors":[
655
- {"shape":"InvalidRequestException"},
656
- {"shape":"InternalFailureException"},
657
- {"shape":"ThrottlingException"}
658
- ],
659
- "endpoint":{"hostPrefix":"edge."}
660
- },
661
- "ListPortals":{
662
- "name":"ListPortals",
663
- "http":{
664
- "method":"GET",
665
- "requestUri":"/portals",
666
- "responseCode":200
667
- },
668
- "input":{"shape":"ListPortalsRequest"},
669
- "output":{"shape":"ListPortalsResponse"},
670
- "errors":[
671
- {"shape":"InvalidRequestException"},
672
- {"shape":"InternalFailureException"},
673
- {"shape":"ThrottlingException"}
674
- ],
675
- "endpoint":{"hostPrefix":"monitor."}
676
- },
677
- "ListProjectAssets":{
678
- "name":"ListProjectAssets",
679
- "http":{
680
- "method":"GET",
681
- "requestUri":"/projects/{projectId}/assets",
682
- "responseCode":200
683
- },
684
- "input":{"shape":"ListProjectAssetsRequest"},
685
- "output":{"shape":"ListProjectAssetsResponse"},
686
- "errors":[
687
- {"shape":"InvalidRequestException"},
688
- {"shape":"InternalFailureException"},
689
- {"shape":"ThrottlingException"}
690
- ],
691
- "endpoint":{"hostPrefix":"monitor."}
692
- },
693
- "ListProjects":{
694
- "name":"ListProjects",
695
- "http":{
696
- "method":"GET",
697
- "requestUri":"/projects",
698
- "responseCode":200
699
- },
700
- "input":{"shape":"ListProjectsRequest"},
701
- "output":{"shape":"ListProjectsResponse"},
702
- "errors":[
703
- {"shape":"InvalidRequestException"},
704
- {"shape":"InternalFailureException"},
705
- {"shape":"ThrottlingException"}
706
- ],
707
- "endpoint":{"hostPrefix":"monitor."}
708
- },
709
- "ListTagsForResource":{
710
- "name":"ListTagsForResource",
711
- "http":{
712
- "method":"GET",
713
- "requestUri":"/tags"
714
- },
715
- "input":{"shape":"ListTagsForResourceRequest"},
716
- "output":{"shape":"ListTagsForResourceResponse"},
717
- "errors":[
718
- {"shape":"InvalidRequestException"},
719
- {"shape":"InternalFailureException"},
720
- {"shape":"ThrottlingException"},
721
- {"shape":"ResourceNotFoundException"}
722
- ]
723
- },
724
- "PutLoggingOptions":{
725
- "name":"PutLoggingOptions",
726
- "http":{
727
- "method":"PUT",
728
- "requestUri":"/logging"
729
- },
730
- "input":{"shape":"PutLoggingOptionsRequest"},
731
- "output":{"shape":"PutLoggingOptionsResponse"},
732
- "errors":[
733
- {"shape":"InvalidRequestException"},
734
- {"shape":"ThrottlingException"},
735
- {"shape":"InternalFailureException"},
736
- {"shape":"ConflictingOperationException"},
737
- {"shape":"ResourceNotFoundException"}
738
- ],
739
- "endpoint":{"hostPrefix":"model."}
740
- },
741
- "TagResource":{
742
- "name":"TagResource",
743
- "http":{
744
- "method":"POST",
745
- "requestUri":"/tags"
746
- },
747
- "input":{"shape":"TagResourceRequest"},
748
- "output":{"shape":"TagResourceResponse"},
749
- "errors":[
750
- {"shape":"InvalidRequestException"},
751
- {"shape":"InternalFailureException"},
752
- {"shape":"ThrottlingException"},
753
- {"shape":"ResourceNotFoundException"},
754
- {"shape":"TooManyTagsException"}
755
- ]
756
- },
757
- "UntagResource":{
758
- "name":"UntagResource",
759
- "http":{
760
- "method":"DELETE",
761
- "requestUri":"/tags"
762
- },
763
- "input":{"shape":"UntagResourceRequest"},
764
- "output":{"shape":"UntagResourceResponse"},
765
- "errors":[
766
- {"shape":"InvalidRequestException"},
767
- {"shape":"InternalFailureException"},
768
- {"shape":"ThrottlingException"},
769
- {"shape":"ResourceNotFoundException"}
770
- ]
771
- },
772
- "UpdateAccessPolicy":{
773
- "name":"UpdateAccessPolicy",
774
- "http":{
775
- "method":"PUT",
776
- "requestUri":"/access-policies/{accessPolicyId}",
777
- "responseCode":200
778
- },
779
- "input":{"shape":"UpdateAccessPolicyRequest"},
780
- "output":{"shape":"UpdateAccessPolicyResponse"},
781
- "errors":[
782
- {"shape":"InvalidRequestException"},
783
- {"shape":"ResourceNotFoundException"},
784
- {"shape":"InternalFailureException"},
785
- {"shape":"ThrottlingException"}
786
- ],
787
- "endpoint":{"hostPrefix":"monitor."}
788
- },
789
- "UpdateAsset":{
790
- "name":"UpdateAsset",
791
- "http":{
792
- "method":"PUT",
793
- "requestUri":"/assets/{assetId}",
794
- "responseCode":202
795
- },
796
- "input":{"shape":"UpdateAssetRequest"},
797
- "output":{"shape":"UpdateAssetResponse"},
798
- "errors":[
799
- {"shape":"InvalidRequestException"},
800
- {"shape":"ResourceAlreadyExistsException"},
801
- {"shape":"ResourceNotFoundException"},
802
- {"shape":"InternalFailureException"},
803
- {"shape":"ThrottlingException"},
804
- {"shape":"ConflictingOperationException"}
805
- ],
806
- "endpoint":{"hostPrefix":"model."}
807
- },
808
- "UpdateAssetModel":{
809
- "name":"UpdateAssetModel",
810
- "http":{
811
- "method":"PUT",
812
- "requestUri":"/asset-models/{assetModelId}",
813
- "responseCode":202
814
- },
815
- "input":{"shape":"UpdateAssetModelRequest"},
816
- "output":{"shape":"UpdateAssetModelResponse"},
817
- "errors":[
818
- {"shape":"InvalidRequestException"},
819
- {"shape":"ResourceAlreadyExistsException"},
820
- {"shape":"ResourceNotFoundException"},
821
- {"shape":"InternalFailureException"},
822
- {"shape":"LimitExceededException"},
823
- {"shape":"ThrottlingException"},
824
- {"shape":"ConflictingOperationException"}
825
- ],
826
- "endpoint":{"hostPrefix":"model."}
827
- },
828
- "UpdateAssetProperty":{
829
- "name":"UpdateAssetProperty",
830
- "http":{
831
- "method":"PUT",
832
- "requestUri":"/assets/{assetId}/properties/{propertyId}"
833
- },
834
- "input":{"shape":"UpdateAssetPropertyRequest"},
835
- "errors":[
836
- {"shape":"InvalidRequestException"},
837
- {"shape":"ResourceNotFoundException"},
838
- {"shape":"InternalFailureException"},
839
- {"shape":"ThrottlingException"},
840
- {"shape":"ConflictingOperationException"}
841
- ],
842
- "endpoint":{"hostPrefix":"model."}
843
- },
844
- "UpdateDashboard":{
845
- "name":"UpdateDashboard",
846
- "http":{
847
- "method":"PUT",
848
- "requestUri":"/dashboards/{dashboardId}",
849
- "responseCode":200
850
- },
851
- "input":{"shape":"UpdateDashboardRequest"},
852
- "output":{"shape":"UpdateDashboardResponse"},
853
- "errors":[
854
- {"shape":"InvalidRequestException"},
855
- {"shape":"ResourceNotFoundException"},
856
- {"shape":"InternalFailureException"},
857
- {"shape":"ThrottlingException"}
858
- ],
859
- "endpoint":{"hostPrefix":"monitor."}
860
- },
861
- "UpdateGateway":{
862
- "name":"UpdateGateway",
863
- "http":{
864
- "method":"PUT",
865
- "requestUri":"/20200301/gateways/{gatewayId}"
866
- },
867
- "input":{"shape":"UpdateGatewayRequest"},
868
- "errors":[
869
- {"shape":"InvalidRequestException"},
870
- {"shape":"ResourceNotFoundException"},
871
- {"shape":"ConflictingOperationException"},
872
- {"shape":"InternalFailureException"},
873
- {"shape":"ThrottlingException"}
874
- ],
875
- "endpoint":{"hostPrefix":"edge."}
876
- },
877
- "UpdateGatewayCapabilityConfiguration":{
878
- "name":"UpdateGatewayCapabilityConfiguration",
879
- "http":{
880
- "method":"POST",
881
- "requestUri":"/20200301/gateways/{gatewayId}/capability",
882
- "responseCode":201
883
- },
884
- "input":{"shape":"UpdateGatewayCapabilityConfigurationRequest"},
885
- "output":{"shape":"UpdateGatewayCapabilityConfigurationResponse"},
886
- "errors":[
887
- {"shape":"InvalidRequestException"},
888
- {"shape":"ResourceNotFoundException"},
889
- {"shape":"ConflictingOperationException"},
890
- {"shape":"InternalFailureException"},
891
- {"shape":"ThrottlingException"},
892
- {"shape":"LimitExceededException"}
893
- ],
894
- "endpoint":{"hostPrefix":"edge."}
895
- },
896
- "UpdatePortal":{
897
- "name":"UpdatePortal",
898
- "http":{
899
- "method":"PUT",
900
- "requestUri":"/portals/{portalId}",
901
- "responseCode":202
902
- },
903
- "input":{"shape":"UpdatePortalRequest"},
904
- "output":{"shape":"UpdatePortalResponse"},
905
- "errors":[
906
- {"shape":"InvalidRequestException"},
907
- {"shape":"ResourceNotFoundException"},
908
- {"shape":"InternalFailureException"},
909
- {"shape":"ThrottlingException"},
910
- {"shape":"ConflictingOperationException"}
911
- ],
912
- "endpoint":{"hostPrefix":"monitor."}
913
- },
914
- "UpdateProject":{
915
- "name":"UpdateProject",
916
- "http":{
917
- "method":"PUT",
918
- "requestUri":"/projects/{projectId}",
919
- "responseCode":200
920
- },
921
- "input":{"shape":"UpdateProjectRequest"},
922
- "output":{"shape":"UpdateProjectResponse"},
923
- "errors":[
924
- {"shape":"InvalidRequestException"},
925
- {"shape":"ResourceNotFoundException"},
926
- {"shape":"InternalFailureException"},
927
- {"shape":"ThrottlingException"}
928
- ],
929
- "endpoint":{"hostPrefix":"monitor."}
930
- }
931
- },
932
- "shapes":{
933
- "ARN":{
934
- "type":"string",
935
- "max":1600,
936
- "min":1,
937
- "pattern":".*"
938
- },
939
- "AccessPolicySummaries":{
940
- "type":"list",
941
- "member":{"shape":"AccessPolicySummary"}
942
- },
943
- "AccessPolicySummary":{
944
- "type":"structure",
945
- "required":[
946
- "id",
947
- "identity",
948
- "resource",
949
- "permission"
950
- ],
951
- "members":{
952
- "id":{"shape":"ID"},
953
- "identity":{"shape":"Identity"},
954
- "resource":{"shape":"Resource"},
955
- "permission":{"shape":"Permission"},
956
- "creationDate":{"shape":"Timestamp"},
957
- "lastUpdateDate":{"shape":"Timestamp"}
958
- }
959
- },
960
- "AggregateType":{
961
- "type":"string",
962
- "enum":[
963
- "AVERAGE",
964
- "COUNT",
965
- "MAXIMUM",
966
- "MINIMUM",
967
- "SUM"
968
- ]
969
- },
970
- "AggregateTypes":{
971
- "type":"list",
972
- "member":{"shape":"AggregateType"},
973
- "min":1
974
- },
975
- "AggregatedDoubleValue":{"type":"double"},
976
- "AggregatedValue":{
977
- "type":"structure",
978
- "required":[
979
- "timestamp",
980
- "value"
981
- ],
982
- "members":{
983
- "timestamp":{"shape":"Timestamp"},
984
- "quality":{"shape":"Quality"},
985
- "value":{"shape":"Aggregates"}
986
- }
987
- },
988
- "AggregatedValues":{
989
- "type":"list",
990
- "member":{"shape":"AggregatedValue"}
991
- },
992
- "Aggregates":{
993
- "type":"structure",
994
- "members":{
995
- "average":{"shape":"AggregatedDoubleValue"},
996
- "count":{"shape":"AggregatedDoubleValue"},
997
- "maximum":{"shape":"AggregatedDoubleValue"},
998
- "minimum":{"shape":"AggregatedDoubleValue"},
999
- "sum":{"shape":"AggregatedDoubleValue"}
1000
- }
1001
- },
1002
- "AmazonResourceName":{
1003
- "type":"string",
1004
- "max":1011,
1005
- "min":1
1006
- },
1007
- "AssetErrorCode":{
1008
- "type":"string",
1009
- "enum":["INTERNAL_FAILURE"]
1010
- },
1011
- "AssetErrorDetails":{
1012
- "type":"structure",
1013
- "required":[
1014
- "assetId",
1015
- "code",
1016
- "message"
1017
- ],
1018
- "members":{
1019
- "assetId":{"shape":"ID"},
1020
- "code":{"shape":"AssetErrorCode"},
1021
- "message":{"shape":"AssetErrorMessage"}
1022
- }
1023
- },
1024
- "AssetErrorMessage":{"type":"string"},
1025
- "AssetHierarchies":{
1026
- "type":"list",
1027
- "member":{"shape":"AssetHierarchy"}
1028
- },
1029
- "AssetHierarchy":{
1030
- "type":"structure",
1031
- "required":["name"],
1032
- "members":{
1033
- "id":{"shape":"ID"},
1034
- "name":{"shape":"Name"}
1035
- }
1036
- },
1037
- "AssetIDs":{
1038
- "type":"list",
1039
- "member":{"shape":"ID"}
1040
- },
1041
- "AssetModelHierarchies":{
1042
- "type":"list",
1043
- "member":{"shape":"AssetModelHierarchy"}
1044
- },
1045
- "AssetModelHierarchy":{
1046
- "type":"structure",
1047
- "required":[
1048
- "name",
1049
- "childAssetModelId"
1050
- ],
1051
- "members":{
1052
- "id":{"shape":"ID"},
1053
- "name":{"shape":"Name"},
1054
- "childAssetModelId":{"shape":"ID"}
1055
- }
1056
- },
1057
- "AssetModelHierarchyDefinition":{
1058
- "type":"structure",
1059
- "required":[
1060
- "name",
1061
- "childAssetModelId"
1062
- ],
1063
- "members":{
1064
- "name":{"shape":"Name"},
1065
- "childAssetModelId":{"shape":"ID"}
1066
- }
1067
- },
1068
- "AssetModelHierarchyDefinitions":{
1069
- "type":"list",
1070
- "member":{"shape":"AssetModelHierarchyDefinition"}
1071
- },
1072
- "AssetModelProperties":{
1073
- "type":"list",
1074
- "member":{"shape":"AssetModelProperty"}
1075
- },
1076
- "AssetModelProperty":{
1077
- "type":"structure",
1078
- "required":[
1079
- "name",
1080
- "dataType",
1081
- "type"
1082
- ],
1083
- "members":{
1084
- "id":{"shape":"ID"},
1085
- "name":{"shape":"Name"},
1086
- "dataType":{"shape":"PropertyDataType"},
1087
- "unit":{"shape":"PropertyUnit"},
1088
- "type":{"shape":"PropertyType"}
1089
- }
1090
- },
1091
- "AssetModelPropertyDefinition":{
1092
- "type":"structure",
1093
- "required":[
1094
- "name",
1095
- "dataType",
1096
- "type"
1097
- ],
1098
- "members":{
1099
- "name":{"shape":"Name"},
1100
- "dataType":{"shape":"PropertyDataType"},
1101
- "unit":{"shape":"PropertyUnit"},
1102
- "type":{"shape":"PropertyType"}
1103
- }
1104
- },
1105
- "AssetModelPropertyDefinitions":{
1106
- "type":"list",
1107
- "member":{"shape":"AssetModelPropertyDefinition"}
1108
- },
1109
- "AssetModelState":{
1110
- "type":"string",
1111
- "enum":[
1112
- "CREATING",
1113
- "ACTIVE",
1114
- "UPDATING",
1115
- "PROPAGATING",
1116
- "DELETING",
1117
- "FAILED"
1118
- ]
1119
- },
1120
- "AssetModelStatus":{
1121
- "type":"structure",
1122
- "required":["state"],
1123
- "members":{
1124
- "state":{"shape":"AssetModelState"},
1125
- "error":{"shape":"ErrorDetails"}
1126
- }
1127
- },
1128
- "AssetModelSummaries":{
1129
- "type":"list",
1130
- "member":{"shape":"AssetModelSummary"}
1131
- },
1132
- "AssetModelSummary":{
1133
- "type":"structure",
1134
- "required":[
1135
- "id",
1136
- "arn",
1137
- "name",
1138
- "description",
1139
- "creationDate",
1140
- "lastUpdateDate",
1141
- "status"
1142
- ],
1143
- "members":{
1144
- "id":{"shape":"ID"},
1145
- "arn":{"shape":"ARN"},
1146
- "name":{"shape":"Name"},
1147
- "description":{"shape":"Description"},
1148
- "creationDate":{"shape":"Timestamp"},
1149
- "lastUpdateDate":{"shape":"Timestamp"},
1150
- "status":{"shape":"AssetModelStatus"}
1151
- }
1152
- },
1153
- "AssetProperties":{
1154
- "type":"list",
1155
- "member":{"shape":"AssetProperty"}
1156
- },
1157
- "AssetProperty":{
1158
- "type":"structure",
1159
- "required":[
1160
- "id",
1161
- "name",
1162
- "dataType"
1163
- ],
1164
- "members":{
1165
- "id":{"shape":"ID"},
1166
- "name":{"shape":"Name"},
1167
- "alias":{"shape":"PropertyAlias"},
1168
- "notification":{"shape":"PropertyNotification"},
1169
- "dataType":{"shape":"PropertyDataType"},
1170
- "unit":{"shape":"PropertyUnit"}
1171
- }
1172
- },
1173
- "AssetPropertyAlias":{
1174
- "type":"string",
1175
- "max":2048,
1176
- "min":1,
1177
- "pattern":"[^\\u0000-\\u001F\\u007F]+"
1178
- },
1179
- "AssetPropertyValue":{
1180
- "type":"structure",
1181
- "required":[
1182
- "value",
1183
- "timestamp"
1184
- ],
1185
- "members":{
1186
- "value":{"shape":"Variant"},
1187
- "timestamp":{"shape":"TimeInNanos"},
1188
- "quality":{"shape":"Quality"}
1189
- }
1190
- },
1191
- "AssetPropertyValueHistory":{
1192
- "type":"list",
1193
- "member":{"shape":"AssetPropertyValue"}
1194
- },
1195
- "AssetPropertyValues":{
1196
- "type":"list",
1197
- "member":{"shape":"AssetPropertyValue"}
1198
- },
1199
- "AssetState":{
1200
- "type":"string",
1201
- "enum":[
1202
- "CREATING",
1203
- "ACTIVE",
1204
- "UPDATING",
1205
- "DELETING",
1206
- "FAILED"
1207
- ]
1208
- },
1209
- "AssetStatus":{
1210
- "type":"structure",
1211
- "required":["state"],
1212
- "members":{
1213
- "state":{"shape":"AssetState"},
1214
- "error":{"shape":"ErrorDetails"}
1215
- }
1216
- },
1217
- "AssetSummaries":{
1218
- "type":"list",
1219
- "member":{"shape":"AssetSummary"}
1220
- },
1221
- "AssetSummary":{
1222
- "type":"structure",
1223
- "required":[
1224
- "id",
1225
- "arn",
1226
- "name",
1227
- "assetModelId",
1228
- "creationDate",
1229
- "lastUpdateDate",
1230
- "status",
1231
- "hierarchies"
1232
- ],
1233
- "members":{
1234
- "id":{"shape":"ID"},
1235
- "arn":{"shape":"ARN"},
1236
- "name":{"shape":"Name"},
1237
- "assetModelId":{"shape":"ID"},
1238
- "creationDate":{"shape":"Timestamp"},
1239
- "lastUpdateDate":{"shape":"Timestamp"},
1240
- "status":{"shape":"AssetStatus"},
1241
- "hierarchies":{"shape":"AssetHierarchies"}
1242
- }
1243
- },
1244
- "AssociateAssetsRequest":{
1245
- "type":"structure",
1246
- "required":[
1247
- "assetId",
1248
- "hierarchyId",
1249
- "childAssetId"
1250
- ],
1251
- "members":{
1252
- "assetId":{
1253
- "shape":"ID",
1254
- "location":"uri",
1255
- "locationName":"assetId"
1256
- },
1257
- "hierarchyId":{"shape":"ID"},
1258
- "childAssetId":{"shape":"ID"},
1259
- "clientToken":{
1260
- "shape":"ClientToken",
1261
- "idempotencyToken":true
1262
- }
1263
- }
1264
- },
1265
- "AssociatedAssetsSummaries":{
1266
- "type":"list",
1267
- "member":{"shape":"AssociatedAssetsSummary"}
1268
- },
1269
- "AssociatedAssetsSummary":{
1270
- "type":"structure",
1271
- "required":[
1272
- "id",
1273
- "arn",
1274
- "name",
1275
- "assetModelId",
1276
- "creationDate",
1277
- "lastUpdateDate",
1278
- "status",
1279
- "hierarchies"
1280
- ],
1281
- "members":{
1282
- "id":{"shape":"ID"},
1283
- "arn":{"shape":"ARN"},
1284
- "name":{"shape":"Name"},
1285
- "assetModelId":{"shape":"ID"},
1286
- "creationDate":{"shape":"Timestamp"},
1287
- "lastUpdateDate":{"shape":"Timestamp"},
1288
- "status":{"shape":"AssetStatus"},
1289
- "hierarchies":{"shape":"AssetHierarchies"}
1290
- }
1291
- },
1292
- "Attribute":{
1293
- "type":"structure",
1294
- "members":{
1295
- "defaultValue":{"shape":"DefaultValue"}
1296
- }
1297
- },
1298
- "BatchAssociateProjectAssetsErrors":{
1299
- "type":"list",
1300
- "member":{"shape":"AssetErrorDetails"}
1301
- },
1302
- "BatchAssociateProjectAssetsRequest":{
1303
- "type":"structure",
1304
- "required":[
1305
- "projectId",
1306
- "assetIds"
1307
- ],
1308
- "members":{
1309
- "projectId":{
1310
- "shape":"ID",
1311
- "location":"uri",
1312
- "locationName":"projectId"
1313
- },
1314
- "assetIds":{"shape":"IDs"},
1315
- "clientToken":{
1316
- "shape":"ClientToken",
1317
- "idempotencyToken":true
1318
- }
1319
- }
1320
- },
1321
- "BatchAssociateProjectAssetsResponse":{
1322
- "type":"structure",
1323
- "members":{
1324
- "errors":{"shape":"BatchAssociateProjectAssetsErrors"}
1325
- }
1326
- },
1327
- "BatchDisassociateProjectAssetsErrors":{
1328
- "type":"list",
1329
- "member":{"shape":"AssetErrorDetails"}
1330
- },
1331
- "BatchDisassociateProjectAssetsRequest":{
1332
- "type":"structure",
1333
- "required":[
1334
- "projectId",
1335
- "assetIds"
1336
- ],
1337
- "members":{
1338
- "projectId":{
1339
- "shape":"ID",
1340
- "location":"uri",
1341
- "locationName":"projectId"
1342
- },
1343
- "assetIds":{"shape":"IDs"},
1344
- "clientToken":{
1345
- "shape":"ClientToken",
1346
- "idempotencyToken":true
1347
- }
1348
- }
1349
- },
1350
- "BatchDisassociateProjectAssetsResponse":{
1351
- "type":"structure",
1352
- "members":{
1353
- "errors":{"shape":"BatchDisassociateProjectAssetsErrors"}
1354
- }
1355
- },
1356
- "BatchPutAssetPropertyError":{
1357
- "type":"structure",
1358
- "required":[
1359
- "errorCode",
1360
- "errorMessage",
1361
- "timestamps"
1362
- ],
1363
- "members":{
1364
- "errorCode":{"shape":"BatchPutAssetPropertyValueErrorCode"},
1365
- "errorMessage":{"shape":"ErrorMessage"},
1366
- "timestamps":{"shape":"Timestamps"}
1367
- }
1368
- },
1369
- "BatchPutAssetPropertyErrorEntries":{
1370
- "type":"list",
1371
- "member":{"shape":"BatchPutAssetPropertyErrorEntry"}
1372
- },
1373
- "BatchPutAssetPropertyErrorEntry":{
1374
- "type":"structure",
1375
- "required":[
1376
- "entryId",
1377
- "errors"
1378
- ],
1379
- "members":{
1380
- "entryId":{"shape":"EntryId"},
1381
- "errors":{"shape":"BatchPutAssetPropertyErrors"}
1382
- }
1383
- },
1384
- "BatchPutAssetPropertyErrors":{
1385
- "type":"list",
1386
- "member":{"shape":"BatchPutAssetPropertyError"}
1387
- },
1388
- "BatchPutAssetPropertyValueErrorCode":{
1389
- "type":"string",
1390
- "enum":[
1391
- "ResourceNotFoundException",
1392
- "InvalidRequestException",
1393
- "InternalFailureException",
1394
- "ServiceUnavailableException",
1395
- "ThrottlingException",
1396
- "LimitExceededException",
1397
- "ConflictingOperationException",
1398
- "TimestampOutOfRangeException",
1399
- "AccessDeniedException"
1400
- ]
1401
- },
1402
- "BatchPutAssetPropertyValueRequest":{
1403
- "type":"structure",
1404
- "required":["entries"],
1405
- "members":{
1406
- "entries":{"shape":"PutAssetPropertyValueEntries"}
1407
- }
1408
- },
1409
- "BatchPutAssetPropertyValueResponse":{
1410
- "type":"structure",
1411
- "required":["errorEntries"],
1412
- "members":{
1413
- "errorEntries":{"shape":"BatchPutAssetPropertyErrorEntries"}
1414
- }
1415
- },
1416
- "CapabilityConfiguration":{
1417
- "type":"string",
1418
- "max":204800,
1419
- "min":1
1420
- },
1421
- "CapabilityNamespace":{
1422
- "type":"string",
1423
- "max":512,
1424
- "min":1,
1425
- "pattern":"^[a-zA-Z]+:[a-zA-Z]+:[0-9]+$"
1426
- },
1427
- "CapabilitySyncStatus":{
1428
- "type":"string",
1429
- "enum":[
1430
- "IN_SYNC",
1431
- "OUT_OF_SYNC",
1432
- "SYNC_FAILED"
1433
- ]
1434
- },
1435
- "ClientToken":{
1436
- "type":"string",
1437
- "max":64,
1438
- "min":36,
1439
- "pattern":"\\S{36,64}"
1440
- },
1441
- "ConflictingOperationException":{
1442
- "type":"structure",
1443
- "required":[
1444
- "message",
1445
- "resourceId",
1446
- "resourceArn"
1447
- ],
1448
- "members":{
1449
- "message":{"shape":"ErrorMessage"},
1450
- "resourceId":{"shape":"ResourceId"},
1451
- "resourceArn":{"shape":"ResourceArn"}
1452
- },
1453
- "error":{"httpStatusCode":409},
1454
- "exception":true
1455
- },
1456
- "CreateAccessPolicyRequest":{
1457
- "type":"structure",
1458
- "required":[
1459
- "accessPolicyIdentity",
1460
- "accessPolicyResource",
1461
- "accessPolicyPermission"
1462
- ],
1463
- "members":{
1464
- "accessPolicyIdentity":{"shape":"Identity"},
1465
- "accessPolicyResource":{"shape":"Resource"},
1466
- "accessPolicyPermission":{"shape":"Permission"},
1467
- "clientToken":{
1468
- "shape":"ClientToken",
1469
- "idempotencyToken":true
1470
- },
1471
- "tags":{"shape":"TagMap"}
1472
- }
1473
- },
1474
- "CreateAccessPolicyResponse":{
1475
- "type":"structure",
1476
- "required":[
1477
- "accessPolicyId",
1478
- "accessPolicyArn"
1479
- ],
1480
- "members":{
1481
- "accessPolicyId":{"shape":"ID"},
1482
- "accessPolicyArn":{"shape":"ARN"}
1483
- }
1484
- },
1485
- "CreateAssetModelRequest":{
1486
- "type":"structure",
1487
- "required":["assetModelName"],
1488
- "members":{
1489
- "assetModelName":{"shape":"Name"},
1490
- "assetModelDescription":{"shape":"Description"},
1491
- "assetModelProperties":{"shape":"AssetModelPropertyDefinitions"},
1492
- "assetModelHierarchies":{"shape":"AssetModelHierarchyDefinitions"},
1493
- "clientToken":{
1494
- "shape":"ClientToken",
1495
- "idempotencyToken":true
1496
- },
1497
- "tags":{"shape":"TagMap"}
1498
- }
1499
- },
1500
- "CreateAssetModelResponse":{
1501
- "type":"structure",
1502
- "required":[
1503
- "assetModelId",
1504
- "assetModelArn",
1505
- "assetModelStatus"
1506
- ],
1507
- "members":{
1508
- "assetModelId":{"shape":"ID"},
1509
- "assetModelArn":{"shape":"ARN"},
1510
- "assetModelStatus":{"shape":"AssetModelStatus"}
1511
- }
1512
- },
1513
- "CreateAssetRequest":{
1514
- "type":"structure",
1515
- "required":[
1516
- "assetName",
1517
- "assetModelId"
1518
- ],
1519
- "members":{
1520
- "assetName":{"shape":"Name"},
1521
- "assetModelId":{"shape":"ID"},
1522
- "clientToken":{
1523
- "shape":"ClientToken",
1524
- "idempotencyToken":true
1525
- },
1526
- "tags":{"shape":"TagMap"}
1527
- }
1528
- },
1529
- "CreateAssetResponse":{
1530
- "type":"structure",
1531
- "required":[
1532
- "assetId",
1533
- "assetArn",
1534
- "assetStatus"
1535
- ],
1536
- "members":{
1537
- "assetId":{"shape":"ID"},
1538
- "assetArn":{"shape":"ARN"},
1539
- "assetStatus":{"shape":"AssetStatus"}
1540
- }
1541
- },
1542
- "CreateDashboardRequest":{
1543
- "type":"structure",
1544
- "required":[
1545
- "projectId",
1546
- "dashboardName",
1547
- "dashboardDefinition"
1548
- ],
1549
- "members":{
1550
- "projectId":{"shape":"ID"},
1551
- "dashboardName":{"shape":"Name"},
1552
- "dashboardDescription":{"shape":"Description"},
1553
- "dashboardDefinition":{"shape":"DashboardDefinition"},
1554
- "clientToken":{
1555
- "shape":"ClientToken",
1556
- "idempotencyToken":true
1557
- },
1558
- "tags":{"shape":"TagMap"}
1559
- }
1560
- },
1561
- "CreateDashboardResponse":{
1562
- "type":"structure",
1563
- "required":[
1564
- "dashboardId",
1565
- "dashboardArn"
1566
- ],
1567
- "members":{
1568
- "dashboardId":{"shape":"ID"},
1569
- "dashboardArn":{"shape":"ARN"}
1570
- }
1571
- },
1572
- "CreateGatewayRequest":{
1573
- "type":"structure",
1574
- "required":[
1575
- "gatewayName",
1576
- "gatewayPlatform"
1577
- ],
1578
- "members":{
1579
- "gatewayName":{"shape":"Name"},
1580
- "gatewayPlatform":{"shape":"GatewayPlatform"},
1581
- "tags":{"shape":"TagMap"}
1582
- }
1583
- },
1584
- "CreateGatewayResponse":{
1585
- "type":"structure",
1586
- "required":[
1587
- "gatewayId",
1588
- "gatewayArn"
1589
- ],
1590
- "members":{
1591
- "gatewayId":{"shape":"ID"},
1592
- "gatewayArn":{"shape":"ARN"}
1593
- }
1594
- },
1595
- "CreatePortalRequest":{
1596
- "type":"structure",
1597
- "required":[
1598
- "portalName",
1599
- "portalContactEmail",
1600
- "roleArn"
1601
- ],
1602
- "members":{
1603
- "portalName":{"shape":"Name"},
1604
- "portalDescription":{"shape":"Description"},
1605
- "portalContactEmail":{"shape":"Email"},
1606
- "clientToken":{
1607
- "shape":"ClientToken",
1608
- "idempotencyToken":true
1609
- },
1610
- "portalLogoImageFile":{"shape":"ImageFile"},
1611
- "roleArn":{"shape":"ARN"},
1612
- "tags":{"shape":"TagMap"}
1613
- }
1614
- },
1615
- "CreatePortalResponse":{
1616
- "type":"structure",
1617
- "required":[
1618
- "portalId",
1619
- "portalArn",
1620
- "portalStartUrl",
1621
- "portalStatus",
1622
- "ssoApplicationId"
1623
- ],
1624
- "members":{
1625
- "portalId":{"shape":"ID"},
1626
- "portalArn":{"shape":"ARN"},
1627
- "portalStartUrl":{"shape":"Url"},
1628
- "portalStatus":{"shape":"PortalStatus"},
1629
- "ssoApplicationId":{"shape":"SSOApplicationId"}
1630
- }
1631
- },
1632
- "CreateProjectRequest":{
1633
- "type":"structure",
1634
- "required":[
1635
- "portalId",
1636
- "projectName"
1637
- ],
1638
- "members":{
1639
- "portalId":{"shape":"ID"},
1640
- "projectName":{"shape":"Name"},
1641
- "projectDescription":{"shape":"Description"},
1642
- "clientToken":{
1643
- "shape":"ClientToken",
1644
- "idempotencyToken":true
1645
- },
1646
- "tags":{"shape":"TagMap"}
1647
- }
1648
- },
1649
- "CreateProjectResponse":{
1650
- "type":"structure",
1651
- "required":[
1652
- "projectId",
1653
- "projectArn"
1654
- ],
1655
- "members":{
1656
- "projectId":{"shape":"ID"},
1657
- "projectArn":{"shape":"ARN"}
1658
- }
1659
- },
1660
- "DashboardDefinition":{
1661
- "type":"string",
1662
- "max":204800,
1663
- "min":0,
1664
- "pattern":".+"
1665
- },
1666
- "DashboardSummaries":{
1667
- "type":"list",
1668
- "member":{"shape":"DashboardSummary"}
1669
- },
1670
- "DashboardSummary":{
1671
- "type":"structure",
1672
- "required":[
1673
- "id",
1674
- "name"
1675
- ],
1676
- "members":{
1677
- "id":{"shape":"ID"},
1678
- "name":{"shape":"Name"},
1679
- "description":{"shape":"Description"},
1680
- "creationDate":{"shape":"Timestamp"},
1681
- "lastUpdateDate":{"shape":"Timestamp"}
1682
- }
1683
- },
1684
- "DefaultValue":{
1685
- "type":"string",
1686
- "max":1024,
1687
- "min":1,
1688
- "pattern":"[^\\u0000-\\u001F\\u007F]+"
1689
- },
1690
- "DeleteAccessPolicyRequest":{
1691
- "type":"structure",
1692
- "required":["accessPolicyId"],
1693
- "members":{
1694
- "accessPolicyId":{
1695
- "shape":"ID",
1696
- "location":"uri",
1697
- "locationName":"accessPolicyId"
1698
- },
1699
- "clientToken":{
1700
- "shape":"ClientToken",
1701
- "idempotencyToken":true,
1702
- "location":"querystring",
1703
- "locationName":"clientToken"
1704
- }
1705
- }
1706
- },
1707
- "DeleteAccessPolicyResponse":{
1708
- "type":"structure",
1709
- "members":{
1710
- }
1711
- },
1712
- "DeleteAssetModelRequest":{
1713
- "type":"structure",
1714
- "required":["assetModelId"],
1715
- "members":{
1716
- "assetModelId":{
1717
- "shape":"ID",
1718
- "location":"uri",
1719
- "locationName":"assetModelId"
1720
- },
1721
- "clientToken":{
1722
- "shape":"ClientToken",
1723
- "idempotencyToken":true,
1724
- "location":"querystring",
1725
- "locationName":"clientToken"
1726
- }
1727
- }
1728
- },
1729
- "DeleteAssetModelResponse":{
1730
- "type":"structure",
1731
- "required":["assetModelStatus"],
1732
- "members":{
1733
- "assetModelStatus":{"shape":"AssetModelStatus"}
1734
- }
1735
- },
1736
- "DeleteAssetRequest":{
1737
- "type":"structure",
1738
- "required":["assetId"],
1739
- "members":{
1740
- "assetId":{
1741
- "shape":"ID",
1742
- "location":"uri",
1743
- "locationName":"assetId"
1744
- },
1745
- "clientToken":{
1746
- "shape":"ClientToken",
1747
- "idempotencyToken":true,
1748
- "location":"querystring",
1749
- "locationName":"clientToken"
1750
- }
1751
- }
1752
- },
1753
- "DeleteAssetResponse":{
1754
- "type":"structure",
1755
- "required":["assetStatus"],
1756
- "members":{
1757
- "assetStatus":{"shape":"AssetStatus"}
1758
- }
1759
- },
1760
- "DeleteDashboardRequest":{
1761
- "type":"structure",
1762
- "required":["dashboardId"],
1763
- "members":{
1764
- "dashboardId":{
1765
- "shape":"ID",
1766
- "location":"uri",
1767
- "locationName":"dashboardId"
1768
- },
1769
- "clientToken":{
1770
- "shape":"ClientToken",
1771
- "idempotencyToken":true,
1772
- "location":"querystring",
1773
- "locationName":"clientToken"
1774
- }
1775
- }
1776
- },
1777
- "DeleteDashboardResponse":{
1778
- "type":"structure",
1779
- "members":{
1780
- }
1781
- },
1782
- "DeleteGatewayRequest":{
1783
- "type":"structure",
1784
- "required":["gatewayId"],
1785
- "members":{
1786
- "gatewayId":{
1787
- "shape":"ID",
1788
- "location":"uri",
1789
- "locationName":"gatewayId"
1790
- }
1791
- }
1792
- },
1793
- "DeletePortalRequest":{
1794
- "type":"structure",
1795
- "required":["portalId"],
1796
- "members":{
1797
- "portalId":{
1798
- "shape":"ID",
1799
- "location":"uri",
1800
- "locationName":"portalId"
1801
- },
1802
- "clientToken":{
1803
- "shape":"ClientToken",
1804
- "idempotencyToken":true,
1805
- "location":"querystring",
1806
- "locationName":"clientToken"
1807
- }
1808
- }
1809
- },
1810
- "DeletePortalResponse":{
1811
- "type":"structure",
1812
- "required":["portalStatus"],
1813
- "members":{
1814
- "portalStatus":{"shape":"PortalStatus"}
1815
- }
1816
- },
1817
- "DeleteProjectRequest":{
1818
- "type":"structure",
1819
- "required":["projectId"],
1820
- "members":{
1821
- "projectId":{
1822
- "shape":"ID",
1823
- "location":"uri",
1824
- "locationName":"projectId"
1825
- },
1826
- "clientToken":{
1827
- "shape":"ClientToken",
1828
- "idempotencyToken":true,
1829
- "location":"querystring",
1830
- "locationName":"clientToken"
1831
- }
1832
- }
1833
- },
1834
- "DeleteProjectResponse":{
1835
- "type":"structure",
1836
- "members":{
1837
- }
1838
- },
1839
- "DescribeAccessPolicyRequest":{
1840
- "type":"structure",
1841
- "required":["accessPolicyId"],
1842
- "members":{
1843
- "accessPolicyId":{
1844
- "shape":"ID",
1845
- "location":"uri",
1846
- "locationName":"accessPolicyId"
1847
- }
1848
- }
1849
- },
1850
- "DescribeAccessPolicyResponse":{
1851
- "type":"structure",
1852
- "required":[
1853
- "accessPolicyId",
1854
- "accessPolicyArn",
1855
- "accessPolicyIdentity",
1856
- "accessPolicyResource",
1857
- "accessPolicyPermission",
1858
- "accessPolicyCreationDate",
1859
- "accessPolicyLastUpdateDate"
1860
- ],
1861
- "members":{
1862
- "accessPolicyId":{"shape":"ID"},
1863
- "accessPolicyArn":{"shape":"ARN"},
1864
- "accessPolicyIdentity":{"shape":"Identity"},
1865
- "accessPolicyResource":{"shape":"Resource"},
1866
- "accessPolicyPermission":{"shape":"Permission"},
1867
- "accessPolicyCreationDate":{"shape":"Timestamp"},
1868
- "accessPolicyLastUpdateDate":{"shape":"Timestamp"}
1869
- }
1870
- },
1871
- "DescribeAssetModelRequest":{
1872
- "type":"structure",
1873
- "required":["assetModelId"],
1874
- "members":{
1875
- "assetModelId":{
1876
- "shape":"ID",
1877
- "location":"uri",
1878
- "locationName":"assetModelId"
1879
- }
1880
- }
1881
- },
1882
- "DescribeAssetModelResponse":{
1883
- "type":"structure",
1884
- "required":[
1885
- "assetModelId",
1886
- "assetModelArn",
1887
- "assetModelName",
1888
- "assetModelDescription",
1889
- "assetModelProperties",
1890
- "assetModelHierarchies",
1891
- "assetModelCreationDate",
1892
- "assetModelLastUpdateDate",
1893
- "assetModelStatus"
1894
- ],
1895
- "members":{
1896
- "assetModelId":{"shape":"ID"},
1897
- "assetModelArn":{"shape":"ARN"},
1898
- "assetModelName":{"shape":"Name"},
1899
- "assetModelDescription":{"shape":"Description"},
1900
- "assetModelProperties":{"shape":"AssetModelProperties"},
1901
- "assetModelHierarchies":{"shape":"AssetModelHierarchies"},
1902
- "assetModelCreationDate":{"shape":"Timestamp"},
1903
- "assetModelLastUpdateDate":{"shape":"Timestamp"},
1904
- "assetModelStatus":{"shape":"AssetModelStatus"}
1905
- }
1906
- },
1907
- "DescribeAssetPropertyRequest":{
1908
- "type":"structure",
1909
- "required":[
1910
- "assetId",
1911
- "propertyId"
1912
- ],
1913
- "members":{
1914
- "assetId":{
1915
- "shape":"ID",
1916
- "location":"uri",
1917
- "locationName":"assetId"
1918
- },
1919
- "propertyId":{
1920
- "shape":"ID",
1921
- "location":"uri",
1922
- "locationName":"propertyId"
1923
- }
1924
- }
1925
- },
1926
- "DescribeAssetPropertyResponse":{
1927
- "type":"structure",
1928
- "required":[
1929
- "assetId",
1930
- "assetName",
1931
- "assetModelId",
1932
- "assetProperty"
1933
- ],
1934
- "members":{
1935
- "assetId":{"shape":"ID"},
1936
- "assetName":{"shape":"Name"},
1937
- "assetModelId":{"shape":"ID"},
1938
- "assetProperty":{"shape":"Property"}
1939
- }
1940
- },
1941
- "DescribeAssetRequest":{
1942
- "type":"structure",
1943
- "required":["assetId"],
1944
- "members":{
1945
- "assetId":{
1946
- "shape":"ID",
1947
- "location":"uri",
1948
- "locationName":"assetId"
1949
- }
1950
- }
1951
- },
1952
- "DescribeAssetResponse":{
1953
- "type":"structure",
1954
- "required":[
1955
- "assetId",
1956
- "assetArn",
1957
- "assetName",
1958
- "assetModelId",
1959
- "assetProperties",
1960
- "assetHierarchies",
1961
- "assetCreationDate",
1962
- "assetLastUpdateDate",
1963
- "assetStatus"
1964
- ],
1965
- "members":{
1966
- "assetId":{"shape":"ID"},
1967
- "assetArn":{"shape":"ARN"},
1968
- "assetName":{"shape":"Name"},
1969
- "assetModelId":{"shape":"ID"},
1970
- "assetProperties":{"shape":"AssetProperties"},
1971
- "assetHierarchies":{"shape":"AssetHierarchies"},
1972
- "assetCreationDate":{"shape":"Timestamp"},
1973
- "assetLastUpdateDate":{"shape":"Timestamp"},
1974
- "assetStatus":{"shape":"AssetStatus"}
1975
- }
1976
- },
1977
- "DescribeDashboardRequest":{
1978
- "type":"structure",
1979
- "required":["dashboardId"],
1980
- "members":{
1981
- "dashboardId":{
1982
- "shape":"ID",
1983
- "location":"uri",
1984
- "locationName":"dashboardId"
1985
- }
1986
- }
1987
- },
1988
- "DescribeDashboardResponse":{
1989
- "type":"structure",
1990
- "required":[
1991
- "dashboardId",
1992
- "dashboardArn",
1993
- "dashboardName",
1994
- "projectId",
1995
- "dashboardDefinition",
1996
- "dashboardCreationDate",
1997
- "dashboardLastUpdateDate"
1998
- ],
1999
- "members":{
2000
- "dashboardId":{"shape":"ID"},
2001
- "dashboardArn":{"shape":"ARN"},
2002
- "dashboardName":{"shape":"Name"},
2003
- "projectId":{"shape":"ID"},
2004
- "dashboardDescription":{"shape":"Description"},
2005
- "dashboardDefinition":{"shape":"DashboardDefinition"},
2006
- "dashboardCreationDate":{"shape":"Timestamp"},
2007
- "dashboardLastUpdateDate":{"shape":"Timestamp"}
2008
- }
2009
- },
2010
- "DescribeGatewayCapabilityConfigurationRequest":{
2011
- "type":"structure",
2012
- "required":[
2013
- "gatewayId",
2014
- "capabilityNamespace"
2015
- ],
2016
- "members":{
2017
- "gatewayId":{
2018
- "shape":"ID",
2019
- "location":"uri",
2020
- "locationName":"gatewayId"
2021
- },
2022
- "capabilityNamespace":{
2023
- "shape":"CapabilityNamespace",
2024
- "location":"uri",
2025
- "locationName":"capabilityNamespace"
2026
- }
2027
- }
2028
- },
2029
- "DescribeGatewayCapabilityConfigurationResponse":{
2030
- "type":"structure",
2031
- "required":[
2032
- "gatewayId",
2033
- "capabilityNamespace",
2034
- "capabilityConfiguration",
2035
- "capabilitySyncStatus"
2036
- ],
2037
- "members":{
2038
- "gatewayId":{"shape":"ID"},
2039
- "capabilityNamespace":{"shape":"CapabilityNamespace"},
2040
- "capabilityConfiguration":{"shape":"CapabilityConfiguration"},
2041
- "capabilitySyncStatus":{"shape":"CapabilitySyncStatus"}
2042
- }
2043
- },
2044
- "DescribeGatewayRequest":{
2045
- "type":"structure",
2046
- "required":["gatewayId"],
2047
- "members":{
2048
- "gatewayId":{
2049
- "shape":"ID",
2050
- "location":"uri",
2051
- "locationName":"gatewayId"
2052
- }
2053
- }
2054
- },
2055
- "DescribeGatewayResponse":{
2056
- "type":"structure",
2057
- "required":[
2058
- "gatewayId",
2059
- "gatewayName",
2060
- "gatewayArn",
2061
- "gatewayCapabilitySummaries",
2062
- "creationDate",
2063
- "lastUpdateDate"
2064
- ],
2065
- "members":{
2066
- "gatewayId":{"shape":"ID"},
2067
- "gatewayName":{"shape":"Name"},
2068
- "gatewayArn":{"shape":"ARN"},
2069
- "gatewayPlatform":{"shape":"GatewayPlatform"},
2070
- "gatewayCapabilitySummaries":{"shape":"GatewayCapabilitySummaries"},
2071
- "creationDate":{"shape":"Timestamp"},
2072
- "lastUpdateDate":{"shape":"Timestamp"}
2073
- }
2074
- },
2075
- "DescribeLoggingOptionsRequest":{
2076
- "type":"structure",
2077
- "members":{
2078
- }
2079
- },
2080
- "DescribeLoggingOptionsResponse":{
2081
- "type":"structure",
2082
- "required":["loggingOptions"],
2083
- "members":{
2084
- "loggingOptions":{"shape":"LoggingOptions"}
2085
- }
2086
- },
2087
- "DescribePortalRequest":{
2088
- "type":"structure",
2089
- "required":["portalId"],
2090
- "members":{
2091
- "portalId":{
2092
- "shape":"ID",
2093
- "location":"uri",
2094
- "locationName":"portalId"
2095
- }
2096
- }
2097
- },
2098
- "DescribePortalResponse":{
2099
- "type":"structure",
2100
- "required":[
2101
- "portalId",
2102
- "portalArn",
2103
- "portalName",
2104
- "portalClientId",
2105
- "portalStartUrl",
2106
- "portalContactEmail",
2107
- "portalStatus",
2108
- "portalCreationDate",
2109
- "portalLastUpdateDate"
2110
- ],
2111
- "members":{
2112
- "portalId":{"shape":"ID"},
2113
- "portalArn":{"shape":"ARN"},
2114
- "portalName":{"shape":"Name"},
2115
- "portalDescription":{"shape":"Description"},
2116
- "portalClientId":{"shape":"PortalClientId"},
2117
- "portalStartUrl":{"shape":"Url"},
2118
- "portalContactEmail":{"shape":"Email"},
2119
- "portalStatus":{"shape":"PortalStatus"},
2120
- "portalCreationDate":{"shape":"Timestamp"},
2121
- "portalLastUpdateDate":{"shape":"Timestamp"},
2122
- "portalLogoImage":{"shape":"Image"},
2123
- "roleArn":{"shape":"ARN"}
2124
- }
2125
- },
2126
- "DescribeProjectRequest":{
2127
- "type":"structure",
2128
- "required":["projectId"],
2129
- "members":{
2130
- "projectId":{
2131
- "shape":"ID",
2132
- "location":"uri",
2133
- "locationName":"projectId"
2134
- }
2135
- }
2136
- },
2137
- "DescribeProjectResponse":{
2138
- "type":"structure",
2139
- "required":[
2140
- "projectId",
2141
- "projectArn",
2142
- "projectName",
2143
- "portalId",
2144
- "projectCreationDate",
2145
- "projectLastUpdateDate"
2146
- ],
2147
- "members":{
2148
- "projectId":{"shape":"ID"},
2149
- "projectArn":{"shape":"ARN"},
2150
- "projectName":{"shape":"Name"},
2151
- "portalId":{"shape":"ID"},
2152
- "projectDescription":{"shape":"Description"},
2153
- "projectCreationDate":{"shape":"Timestamp"},
2154
- "projectLastUpdateDate":{"shape":"Timestamp"}
2155
- }
2156
- },
2157
- "Description":{
2158
- "type":"string",
2159
- "max":2048,
2160
- "min":1,
2161
- "pattern":"[^\\u0000-\\u001F\\u007F]+"
2162
- },
2163
- "DisassociateAssetsRequest":{
2164
- "type":"structure",
2165
- "required":[
2166
- "assetId",
2167
- "hierarchyId",
2168
- "childAssetId"
2169
- ],
2170
- "members":{
2171
- "assetId":{
2172
- "shape":"ID",
2173
- "location":"uri",
2174
- "locationName":"assetId"
2175
- },
2176
- "hierarchyId":{"shape":"ID"},
2177
- "childAssetId":{"shape":"ID"},
2178
- "clientToken":{
2179
- "shape":"ClientToken",
2180
- "idempotencyToken":true
2181
- }
2182
- }
2183
- },
2184
- "Email":{
2185
- "type":"string",
2186
- "max":255,
2187
- "min":1,
2188
- "pattern":"[^@]+@[^@]+"
2189
- },
2190
- "EntryId":{
2191
- "type":"string",
2192
- "max":64,
2193
- "min":1,
2194
- "pattern":"^[a-zA-Z0-9_-]+$"
2195
- },
2196
- "ErrorCode":{
2197
- "type":"string",
2198
- "enum":[
2199
- "VALIDATION_ERROR",
2200
- "INTERNAL_FAILURE"
2201
- ]
2202
- },
2203
- "ErrorDetails":{
2204
- "type":"structure",
2205
- "required":[
2206
- "code",
2207
- "message"
2208
- ],
2209
- "members":{
2210
- "code":{"shape":"ErrorCode"},
2211
- "message":{"shape":"ErrorMessage"}
2212
- }
2213
- },
2214
- "ErrorMessage":{"type":"string"},
2215
- "ExceptionMessage":{"type":"string"},
2216
- "Expression":{
2217
- "type":"string",
2218
- "max":1024,
2219
- "min":1,
2220
- "pattern":"^[a-z0-9._+\\-*%/^, ()]+$"
2221
- },
2222
- "ExpressionVariable":{
2223
- "type":"structure",
2224
- "required":[
2225
- "name",
2226
- "value"
2227
- ],
2228
- "members":{
2229
- "name":{"shape":"VariableName"},
2230
- "value":{"shape":"VariableValue"}
2231
- }
2232
- },
2233
- "ExpressionVariables":{
2234
- "type":"list",
2235
- "member":{"shape":"ExpressionVariable"}
2236
- },
2237
- "GatewayCapabilitySummaries":{
2238
- "type":"list",
2239
- "member":{"shape":"GatewayCapabilitySummary"}
2240
- },
2241
- "GatewayCapabilitySummary":{
2242
- "type":"structure",
2243
- "required":[
2244
- "capabilityNamespace",
2245
- "capabilitySyncStatus"
2246
- ],
2247
- "members":{
2248
- "capabilityNamespace":{"shape":"CapabilityNamespace"},
2249
- "capabilitySyncStatus":{"shape":"CapabilitySyncStatus"}
2250
- }
2251
- },
2252
- "GatewayPlatform":{
2253
- "type":"structure",
2254
- "required":["greengrass"],
2255
- "members":{
2256
- "greengrass":{"shape":"Greengrass"}
2257
- }
2258
- },
2259
- "GatewaySummaries":{
2260
- "type":"list",
2261
- "member":{"shape":"GatewaySummary"}
2262
- },
2263
- "GatewaySummary":{
2264
- "type":"structure",
2265
- "required":[
2266
- "gatewayId",
2267
- "gatewayName",
2268
- "creationDate",
2269
- "lastUpdateDate"
2270
- ],
2271
- "members":{
2272
- "gatewayId":{"shape":"ID"},
2273
- "gatewayName":{"shape":"Name"},
2274
- "gatewayCapabilitySummaries":{"shape":"GatewayCapabilitySummaries"},
2275
- "creationDate":{"shape":"Timestamp"},
2276
- "lastUpdateDate":{"shape":"Timestamp"}
2277
- }
2278
- },
2279
- "GetAssetPropertyAggregatesRequest":{
2280
- "type":"structure",
2281
- "required":[
2282
- "aggregateTypes",
2283
- "resolution",
2284
- "startDate",
2285
- "endDate"
2286
- ],
2287
- "members":{
2288
- "assetId":{
2289
- "shape":"ID",
2290
- "location":"querystring",
2291
- "locationName":"assetId"
2292
- },
2293
- "propertyId":{
2294
- "shape":"ID",
2295
- "location":"querystring",
2296
- "locationName":"propertyId"
2297
- },
2298
- "propertyAlias":{
2299
- "shape":"AssetPropertyAlias",
2300
- "location":"querystring",
2301
- "locationName":"propertyAlias"
2302
- },
2303
- "aggregateTypes":{
2304
- "shape":"AggregateTypes",
2305
- "location":"querystring",
2306
- "locationName":"aggregateTypes"
2307
- },
2308
- "resolution":{
2309
- "shape":"Resolution",
2310
- "location":"querystring",
2311
- "locationName":"resolution"
2312
- },
2313
- "qualities":{
2314
- "shape":"Qualities",
2315
- "location":"querystring",
2316
- "locationName":"qualities"
2317
- },
2318
- "startDate":{
2319
- "shape":"Timestamp",
2320
- "location":"querystring",
2321
- "locationName":"startDate"
2322
- },
2323
- "endDate":{
2324
- "shape":"Timestamp",
2325
- "location":"querystring",
2326
- "locationName":"endDate"
2327
- },
2328
- "timeOrdering":{
2329
- "shape":"TimeOrdering",
2330
- "location":"querystring",
2331
- "locationName":"timeOrdering"
2332
- },
2333
- "nextToken":{
2334
- "shape":"NextToken",
2335
- "location":"querystring",
2336
- "locationName":"nextToken"
2337
- },
2338
- "maxResults":{
2339
- "shape":"MaxResults",
2340
- "location":"querystring",
2341
- "locationName":"maxResults"
2342
- }
2343
- }
2344
- },
2345
- "GetAssetPropertyAggregatesResponse":{
2346
- "type":"structure",
2347
- "required":["aggregatedValues"],
2348
- "members":{
2349
- "aggregatedValues":{"shape":"AggregatedValues"},
2350
- "nextToken":{"shape":"NextToken"}
2351
- }
2352
- },
2353
- "GetAssetPropertyValueHistoryRequest":{
2354
- "type":"structure",
2355
- "required":[
2356
- "startDate",
2357
- "endDate"
2358
- ],
2359
- "members":{
2360
- "assetId":{
2361
- "shape":"ID",
2362
- "location":"querystring",
2363
- "locationName":"assetId"
2364
- },
2365
- "propertyId":{
2366
- "shape":"ID",
2367
- "location":"querystring",
2368
- "locationName":"propertyId"
2369
- },
2370
- "propertyAlias":{
2371
- "shape":"AssetPropertyAlias",
2372
- "location":"querystring",
2373
- "locationName":"propertyAlias"
2374
- },
2375
- "startDate":{
2376
- "shape":"Timestamp",
2377
- "location":"querystring",
2378
- "locationName":"startDate"
2379
- },
2380
- "endDate":{
2381
- "shape":"Timestamp",
2382
- "location":"querystring",
2383
- "locationName":"endDate"
2384
- },
2385
- "qualities":{
2386
- "shape":"Qualities",
2387
- "location":"querystring",
2388
- "locationName":"qualities"
2389
- },
2390
- "timeOrdering":{
2391
- "shape":"TimeOrdering",
2392
- "location":"querystring",
2393
- "locationName":"timeOrdering"
2394
- },
2395
- "nextToken":{
2396
- "shape":"NextToken",
2397
- "location":"querystring",
2398
- "locationName":"nextToken"
2399
- },
2400
- "maxResults":{
2401
- "shape":"MaxResults",
2402
- "location":"querystring",
2403
- "locationName":"maxResults"
2404
- }
2405
- }
2406
- },
2407
- "GetAssetPropertyValueHistoryResponse":{
2408
- "type":"structure",
2409
- "required":["assetPropertyValueHistory"],
2410
- "members":{
2411
- "assetPropertyValueHistory":{"shape":"AssetPropertyValueHistory"},
2412
- "nextToken":{"shape":"NextToken"}
2413
- }
2414
- },
2415
- "GetAssetPropertyValueRequest":{
2416
- "type":"structure",
2417
- "members":{
2418
- "assetId":{
2419
- "shape":"ID",
2420
- "location":"querystring",
2421
- "locationName":"assetId"
2422
- },
2423
- "propertyId":{
2424
- "shape":"ID",
2425
- "location":"querystring",
2426
- "locationName":"propertyId"
2427
- },
2428
- "propertyAlias":{
2429
- "shape":"AssetPropertyAlias",
2430
- "location":"querystring",
2431
- "locationName":"propertyAlias"
2432
- }
2433
- }
2434
- },
2435
- "GetAssetPropertyValueResponse":{
2436
- "type":"structure",
2437
- "members":{
2438
- "propertyValue":{"shape":"AssetPropertyValue"}
2439
- }
2440
- },
2441
- "Greengrass":{
2442
- "type":"structure",
2443
- "required":["groupArn"],
2444
- "members":{
2445
- "groupArn":{"shape":"ARN"}
2446
- }
2447
- },
2448
- "GroupIdentity":{
2449
- "type":"structure",
2450
- "required":["id"],
2451
- "members":{
2452
- "id":{"shape":"IdentityId"}
2453
- }
2454
- },
2455
- "ID":{
2456
- "type":"string",
2457
- "max":36,
2458
- "min":36,
2459
- "pattern":"^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$"
2460
- },
2461
- "IDs":{
2462
- "type":"list",
2463
- "member":{"shape":"ID"},
2464
- "max":100,
2465
- "min":1
2466
- },
2467
- "Identity":{
2468
- "type":"structure",
2469
- "members":{
2470
- "user":{"shape":"UserIdentity"},
2471
- "group":{"shape":"GroupIdentity"}
2472
- }
2473
- },
2474
- "IdentityId":{
2475
- "type":"string",
2476
- "max":256,
2477
- "min":1,
2478
- "pattern":"\\S+"
2479
- },
2480
- "IdentityType":{
2481
- "type":"string",
2482
- "enum":[
2483
- "USER",
2484
- "GROUP"
2485
- ]
2486
- },
2487
- "Image":{
2488
- "type":"structure",
2489
- "members":{
2490
- "locationUrl":{"shape":"Url"},
2491
- "lastUpdateDate":{"shape":"Timestamp"}
2492
- }
2493
- },
2494
- "ImageFile":{
2495
- "type":"structure",
2496
- "required":[
2497
- "encodedString",
2498
- "fileType"
2499
- ],
2500
- "members":{
2501
- "encodedString":{"shape":"ImageFileData"},
2502
- "fileType":{"shape":"ImageFileType"}
2503
- }
2504
- },
2505
- "ImageFileData":{"type":"blob"},
2506
- "ImageFileType":{
2507
- "type":"string",
2508
- "enum":["PNG"]
2509
- },
2510
- "InternalFailureException":{
2511
- "type":"structure",
2512
- "required":["message"],
2513
- "members":{
2514
- "message":{"shape":"ErrorMessage"}
2515
- },
2516
- "error":{"httpStatusCode":500},
2517
- "exception":true,
2518
- "fault":true
2519
- },
2520
- "Interval":{
2521
- "type":"string",
2522
- "max":3,
2523
- "min":2,
2524
- "pattern":"1w|1d|1h|15m|5m|1m"
2525
- },
2526
- "InvalidRequestException":{
2527
- "type":"structure",
2528
- "required":["message"],
2529
- "members":{
2530
- "message":{"shape":"ErrorMessage"}
2531
- },
2532
- "error":{"httpStatusCode":400},
2533
- "exception":true
2534
- },
2535
- "LimitExceededException":{
2536
- "type":"structure",
2537
- "required":["message"],
2538
- "members":{
2539
- "message":{"shape":"ErrorMessage"}
2540
- },
2541
- "error":{"httpStatusCode":410},
2542
- "exception":true
2543
- },
2544
- "ListAccessPoliciesRequest":{
2545
- "type":"structure",
2546
- "members":{
2547
- "identityType":{
2548
- "shape":"IdentityType",
2549
- "location":"querystring",
2550
- "locationName":"identityType"
2551
- },
2552
- "identityId":{
2553
- "shape":"IdentityId",
2554
- "location":"querystring",
2555
- "locationName":"identityId"
2556
- },
2557
- "resourceType":{
2558
- "shape":"ResourceType",
2559
- "location":"querystring",
2560
- "locationName":"resourceType"
2561
- },
2562
- "resourceId":{
2563
- "shape":"ID",
2564
- "location":"querystring",
2565
- "locationName":"resourceId"
2566
- },
2567
- "nextToken":{
2568
- "shape":"NextToken",
2569
- "location":"querystring",
2570
- "locationName":"nextToken"
2571
- },
2572
- "maxResults":{
2573
- "shape":"MaxResults",
2574
- "location":"querystring",
2575
- "locationName":"maxResults"
2576
- }
2577
- }
2578
- },
2579
- "ListAccessPoliciesResponse":{
2580
- "type":"structure",
2581
- "required":["accessPolicySummaries"],
2582
- "members":{
2583
- "accessPolicySummaries":{"shape":"AccessPolicySummaries"},
2584
- "nextToken":{"shape":"NextToken"}
2585
- }
2586
- },
2587
- "ListAssetModelsRequest":{
2588
- "type":"structure",
2589
- "members":{
2590
- "nextToken":{
2591
- "shape":"NextToken",
2592
- "location":"querystring",
2593
- "locationName":"nextToken"
2594
- },
2595
- "maxResults":{
2596
- "shape":"MaxResults",
2597
- "location":"querystring",
2598
- "locationName":"maxResults"
2599
- }
2600
- }
2601
- },
2602
- "ListAssetModelsResponse":{
2603
- "type":"structure",
2604
- "required":["assetModelSummaries"],
2605
- "members":{
2606
- "assetModelSummaries":{"shape":"AssetModelSummaries"},
2607
- "nextToken":{"shape":"NextToken"}
2608
- }
2609
- },
2610
- "ListAssetsFilter":{
2611
- "type":"string",
2612
- "enum":[
2613
- "ALL",
2614
- "TOP_LEVEL"
2615
- ]
2616
- },
2617
- "ListAssetsRequest":{
2618
- "type":"structure",
2619
- "members":{
2620
- "nextToken":{
2621
- "shape":"NextToken",
2622
- "location":"querystring",
2623
- "locationName":"nextToken"
2624
- },
2625
- "maxResults":{
2626
- "shape":"MaxResults",
2627
- "location":"querystring",
2628
- "locationName":"maxResults"
2629
- },
2630
- "assetModelId":{
2631
- "shape":"ID",
2632
- "location":"querystring",
2633
- "locationName":"assetModelId"
2634
- },
2635
- "filter":{
2636
- "shape":"ListAssetsFilter",
2637
- "location":"querystring",
2638
- "locationName":"filter"
2639
- }
2640
- }
2641
- },
2642
- "ListAssetsResponse":{
2643
- "type":"structure",
2644
- "required":["assetSummaries"],
2645
- "members":{
2646
- "assetSummaries":{"shape":"AssetSummaries"},
2647
- "nextToken":{"shape":"NextToken"}
2648
- }
2649
- },
2650
- "ListAssociatedAssetsRequest":{
2651
- "type":"structure",
2652
- "required":[
2653
- "assetId",
2654
- "hierarchyId"
2655
- ],
2656
- "members":{
2657
- "assetId":{
2658
- "shape":"ID",
2659
- "location":"uri",
2660
- "locationName":"assetId"
2661
- },
2662
- "hierarchyId":{
2663
- "shape":"ID",
2664
- "location":"querystring",
2665
- "locationName":"hierarchyId"
2666
- },
2667
- "nextToken":{
2668
- "shape":"NextToken",
2669
- "location":"querystring",
2670
- "locationName":"nextToken"
2671
- },
2672
- "maxResults":{
2673
- "shape":"MaxResults",
2674
- "location":"querystring",
2675
- "locationName":"maxResults"
2676
- }
2677
- }
2678
- },
2679
- "ListAssociatedAssetsResponse":{
2680
- "type":"structure",
2681
- "required":["assetSummaries"],
2682
- "members":{
2683
- "assetSummaries":{"shape":"AssociatedAssetsSummaries"},
2684
- "nextToken":{"shape":"NextToken"}
2685
- }
2686
- },
2687
- "ListDashboardsRequest":{
2688
- "type":"structure",
2689
- "required":["projectId"],
2690
- "members":{
2691
- "projectId":{
2692
- "shape":"ID",
2693
- "location":"querystring",
2694
- "locationName":"projectId"
2695
- },
2696
- "nextToken":{
2697
- "shape":"NextToken",
2698
- "location":"querystring",
2699
- "locationName":"nextToken"
2700
- },
2701
- "maxResults":{
2702
- "shape":"MaxResults",
2703
- "location":"querystring",
2704
- "locationName":"maxResults"
2705
- }
2706
- }
2707
- },
2708
- "ListDashboardsResponse":{
2709
- "type":"structure",
2710
- "required":["dashboardSummaries"],
2711
- "members":{
2712
- "dashboardSummaries":{"shape":"DashboardSummaries"},
2713
- "nextToken":{"shape":"NextToken"}
2714
- }
2715
- },
2716
- "ListGatewaysRequest":{
2717
- "type":"structure",
2718
- "members":{
2719
- "nextToken":{
2720
- "shape":"NextToken",
2721
- "location":"querystring",
2722
- "locationName":"nextToken"
2723
- },
2724
- "maxResults":{
2725
- "shape":"MaxResults",
2726
- "location":"querystring",
2727
- "locationName":"maxResults"
2728
- }
2729
- }
2730
- },
2731
- "ListGatewaysResponse":{
2732
- "type":"structure",
2733
- "required":["gatewaySummaries"],
2734
- "members":{
2735
- "gatewaySummaries":{"shape":"GatewaySummaries"},
2736
- "nextToken":{"shape":"NextToken"}
2737
- }
2738
- },
2739
- "ListPortalsRequest":{
2740
- "type":"structure",
2741
- "members":{
2742
- "nextToken":{
2743
- "shape":"NextToken",
2744
- "location":"querystring",
2745
- "locationName":"nextToken"
2746
- },
2747
- "maxResults":{
2748
- "shape":"MaxResults",
2749
- "location":"querystring",
2750
- "locationName":"maxResults"
2751
- }
2752
- }
2753
- },
2754
- "ListPortalsResponse":{
2755
- "type":"structure",
2756
- "members":{
2757
- "portalSummaries":{"shape":"PortalSummaries"},
2758
- "nextToken":{"shape":"NextToken"}
2759
- }
2760
- },
2761
- "ListProjectAssetsRequest":{
2762
- "type":"structure",
2763
- "required":["projectId"],
2764
- "members":{
2765
- "projectId":{
2766
- "shape":"ID",
2767
- "location":"uri",
2768
- "locationName":"projectId"
2769
- },
2770
- "nextToken":{
2771
- "shape":"NextToken",
2772
- "location":"querystring",
2773
- "locationName":"nextToken"
2774
- },
2775
- "maxResults":{
2776
- "shape":"MaxResults",
2777
- "location":"querystring",
2778
- "locationName":"maxResults"
2779
- }
2780
- }
2781
- },
2782
- "ListProjectAssetsResponse":{
2783
- "type":"structure",
2784
- "required":["assetIds"],
2785
- "members":{
2786
- "assetIds":{"shape":"AssetIDs"},
2787
- "nextToken":{"shape":"NextToken"}
2788
- }
2789
- },
2790
- "ListProjectsRequest":{
2791
- "type":"structure",
2792
- "required":["portalId"],
2793
- "members":{
2794
- "portalId":{
2795
- "shape":"ID",
2796
- "location":"querystring",
2797
- "locationName":"portalId"
2798
- },
2799
- "nextToken":{
2800
- "shape":"NextToken",
2801
- "location":"querystring",
2802
- "locationName":"nextToken"
2803
- },
2804
- "maxResults":{
2805
- "shape":"MaxResults",
2806
- "location":"querystring",
2807
- "locationName":"maxResults"
2808
- }
2809
- }
2810
- },
2811
- "ListProjectsResponse":{
2812
- "type":"structure",
2813
- "required":["projectSummaries"],
2814
- "members":{
2815
- "projectSummaries":{"shape":"ProjectSummaries"},
2816
- "nextToken":{"shape":"NextToken"}
2817
- }
2818
- },
2819
- "ListTagsForResourceRequest":{
2820
- "type":"structure",
2821
- "required":["resourceArn"],
2822
- "members":{
2823
- "resourceArn":{
2824
- "shape":"AmazonResourceName",
2825
- "location":"querystring",
2826
- "locationName":"resourceArn"
2827
- }
2828
- }
2829
- },
2830
- "ListTagsForResourceResponse":{
2831
- "type":"structure",
2832
- "members":{
2833
- "tags":{"shape":"TagMap"}
2834
- }
2835
- },
2836
- "LoggingLevel":{
2837
- "type":"string",
2838
- "enum":[
2839
- "ERROR",
2840
- "INFO",
2841
- "OFF"
2842
- ]
2843
- },
2844
- "LoggingOptions":{
2845
- "type":"structure",
2846
- "required":["level"],
2847
- "members":{
2848
- "level":{"shape":"LoggingLevel"}
2849
- }
2850
- },
2851
- "Macro":{
2852
- "type":"string",
2853
- "max":256,
2854
- "min":1,
2855
- "pattern":"[^\\u0000-\\u001F\\u007F]+"
2856
- },
2857
- "MaxResults":{
2858
- "type":"integer",
2859
- "max":250,
2860
- "min":1
2861
- },
2862
- "Measurement":{
2863
- "type":"structure",
2864
- "members":{
2865
- }
2866
- },
2867
- "Metric":{
2868
- "type":"structure",
2869
- "required":[
2870
- "expression",
2871
- "variables",
2872
- "window"
2873
- ],
2874
- "members":{
2875
- "expression":{"shape":"Expression"},
2876
- "variables":{"shape":"ExpressionVariables"},
2877
- "window":{"shape":"MetricWindow"}
2878
- }
2879
- },
2880
- "MetricWindow":{
2881
- "type":"structure",
2882
- "members":{
2883
- "tumbling":{"shape":"TumblingWindow"}
2884
- }
2885
- },
2886
- "MonitorErrorCode":{
2887
- "type":"string",
2888
- "enum":["INTERNAL_FAILURE"]
2889
- },
2890
- "MonitorErrorDetails":{
2891
- "type":"structure",
2892
- "members":{
2893
- "code":{"shape":"MonitorErrorCode"},
2894
- "message":{"shape":"MonitorErrorMessage"}
2895
- }
2896
- },
2897
- "MonitorErrorMessage":{"type":"string"},
2898
- "Name":{
2899
- "type":"string",
2900
- "max":256,
2901
- "min":1,
2902
- "pattern":"[^\\u0000-\\u001F\\u007F]+"
2903
- },
2904
- "NextToken":{
2905
- "type":"string",
2906
- "max":2048,
2907
- "min":1,
2908
- "pattern":"[A-Za-z0-9+/=]+"
2909
- },
2910
- "OffsetInNanos":{
2911
- "type":"integer",
2912
- "max":999999999,
2913
- "min":0
2914
- },
2915
- "Permission":{
2916
- "type":"string",
2917
- "enum":[
2918
- "ADMINISTRATOR",
2919
- "VIEWER"
2920
- ]
2921
- },
2922
- "PortalClientId":{
2923
- "type":"string",
2924
- "max":256,
2925
- "min":1,
2926
- "pattern":"^[!-~]*"
2927
- },
2928
- "PortalResource":{
2929
- "type":"structure",
2930
- "required":["id"],
2931
- "members":{
2932
- "id":{"shape":"ID"}
2933
- }
2934
- },
2935
- "PortalState":{
2936
- "type":"string",
2937
- "enum":[
2938
- "CREATING",
2939
- "UPDATING",
2940
- "DELETING",
2941
- "ACTIVE",
2942
- "FAILED"
2943
- ]
2944
- },
2945
- "PortalStatus":{
2946
- "type":"structure",
2947
- "required":["state"],
2948
- "members":{
2949
- "state":{"shape":"PortalState"},
2950
- "error":{"shape":"MonitorErrorDetails"}
2951
- }
2952
- },
2953
- "PortalSummaries":{
2954
- "type":"list",
2955
- "member":{"shape":"PortalSummary"}
2956
- },
2957
- "PortalSummary":{
2958
- "type":"structure",
2959
- "required":[
2960
- "id",
2961
- "name",
2962
- "startUrl"
2963
- ],
2964
- "members":{
2965
- "id":{"shape":"ID"},
2966
- "name":{"shape":"Name"},
2967
- "description":{"shape":"Description"},
2968
- "startUrl":{"shape":"Url"},
2969
- "creationDate":{"shape":"Timestamp"},
2970
- "lastUpdateDate":{"shape":"Timestamp"},
2971
- "roleArn":{"shape":"ARN"}
2972
- }
2973
- },
2974
- "ProjectResource":{
2975
- "type":"structure",
2976
- "required":["id"],
2977
- "members":{
2978
- "id":{"shape":"ID"}
2979
- }
2980
- },
2981
- "ProjectSummaries":{
2982
- "type":"list",
2983
- "member":{"shape":"ProjectSummary"}
2984
- },
2985
- "ProjectSummary":{
2986
- "type":"structure",
2987
- "required":[
2988
- "id",
2989
- "name"
2990
- ],
2991
- "members":{
2992
- "id":{"shape":"ID"},
2993
- "name":{"shape":"Name"},
2994
- "description":{"shape":"Description"},
2995
- "creationDate":{"shape":"Timestamp"},
2996
- "lastUpdateDate":{"shape":"Timestamp"}
2997
- }
2998
- },
2999
- "Property":{
3000
- "type":"structure",
3001
- "required":[
3002
- "id",
3003
- "name",
3004
- "dataType"
3005
- ],
3006
- "members":{
3007
- "id":{"shape":"ID"},
3008
- "name":{"shape":"Name"},
3009
- "alias":{"shape":"PropertyAlias"},
3010
- "notification":{"shape":"PropertyNotification"},
3011
- "dataType":{"shape":"PropertyDataType"},
3012
- "unit":{"shape":"PropertyUnit"},
3013
- "type":{"shape":"PropertyType"}
3014
- }
3015
- },
3016
- "PropertyAlias":{
3017
- "type":"string",
3018
- "max":2048,
3019
- "min":1,
3020
- "pattern":"[^\\u0000-\\u001F\\u007F]+"
3021
- },
3022
- "PropertyDataType":{
3023
- "type":"string",
3024
- "enum":[
3025
- "STRING",
3026
- "INTEGER",
3027
- "DOUBLE",
3028
- "BOOLEAN"
3029
- ]
3030
- },
3031
- "PropertyNotification":{
3032
- "type":"structure",
3033
- "required":[
3034
- "topic",
3035
- "state"
3036
- ],
3037
- "members":{
3038
- "topic":{"shape":"PropertyNotificationTopic"},
3039
- "state":{"shape":"PropertyNotificationState"}
3040
- }
3041
- },
3042
- "PropertyNotificationState":{
3043
- "type":"string",
3044
- "enum":[
3045
- "ENABLED",
3046
- "DISABLED"
3047
- ]
3048
- },
3049
- "PropertyNotificationTopic":{"type":"string"},
3050
- "PropertyType":{
3051
- "type":"structure",
3052
- "members":{
3053
- "attribute":{"shape":"Attribute"},
3054
- "measurement":{"shape":"Measurement"},
3055
- "transform":{"shape":"Transform"},
3056
- "metric":{"shape":"Metric"}
3057
- }
3058
- },
3059
- "PropertyUnit":{
3060
- "type":"string",
3061
- "max":256,
3062
- "min":1,
3063
- "pattern":"[^\\u0000-\\u001F\\u007F]+"
3064
- },
3065
- "PropertyValueBooleanValue":{"type":"boolean"},
3066
- "PropertyValueDoubleValue":{"type":"double"},
3067
- "PropertyValueIntegerValue":{"type":"integer"},
3068
- "PropertyValueStringValue":{
3069
- "type":"string",
3070
- "max":1024,
3071
- "min":1,
3072
- "pattern":"[^\\u0000-\\u001F\\u007F]+"
3073
- },
3074
- "PutAssetPropertyValueEntries":{
3075
- "type":"list",
3076
- "member":{"shape":"PutAssetPropertyValueEntry"}
3077
- },
3078
- "PutAssetPropertyValueEntry":{
3079
- "type":"structure",
3080
- "required":[
3081
- "entryId",
3082
- "propertyValues"
3083
- ],
3084
- "members":{
3085
- "entryId":{"shape":"EntryId"},
3086
- "assetId":{"shape":"ID"},
3087
- "propertyId":{"shape":"ID"},
3088
- "propertyAlias":{"shape":"AssetPropertyAlias"},
3089
- "propertyValues":{"shape":"AssetPropertyValues"}
3090
- }
3091
- },
3092
- "PutLoggingOptionsRequest":{
3093
- "type":"structure",
3094
- "required":["loggingOptions"],
3095
- "members":{
3096
- "loggingOptions":{"shape":"LoggingOptions"}
3097
- }
3098
- },
3099
- "PutLoggingOptionsResponse":{
3100
- "type":"structure",
3101
- "members":{
3102
- }
3103
- },
3104
- "Qualities":{
3105
- "type":"list",
3106
- "member":{"shape":"Quality"},
3107
- "max":1,
3108
- "min":1
3109
- },
3110
- "Quality":{
3111
- "type":"string",
3112
- "enum":[
3113
- "GOOD",
3114
- "BAD",
3115
- "UNCERTAIN"
3116
- ]
3117
- },
3118
- "Resolution":{
3119
- "type":"string",
3120
- "max":2,
3121
- "min":2,
3122
- "pattern":"1m|1h|1d"
3123
- },
3124
- "Resource":{
3125
- "type":"structure",
3126
- "members":{
3127
- "portal":{"shape":"PortalResource"},
3128
- "project":{"shape":"ProjectResource"}
3129
- }
3130
- },
3131
- "ResourceAlreadyExistsException":{
3132
- "type":"structure",
3133
- "required":[
3134
- "message",
3135
- "resourceId",
3136
- "resourceArn"
3137
- ],
3138
- "members":{
3139
- "message":{"shape":"ErrorMessage"},
3140
- "resourceId":{"shape":"ResourceId"},
3141
- "resourceArn":{"shape":"ResourceArn"}
3142
- },
3143
- "error":{"httpStatusCode":409},
3144
- "exception":true
3145
- },
3146
- "ResourceArn":{"type":"string"},
3147
- "ResourceId":{"type":"string"},
3148
- "ResourceNotFoundException":{
3149
- "type":"structure",
3150
- "required":["message"],
3151
- "members":{
3152
- "message":{"shape":"ErrorMessage"}
3153
- },
3154
- "error":{"httpStatusCode":404},
3155
- "exception":true
3156
- },
3157
- "ResourceType":{
3158
- "type":"string",
3159
- "enum":[
3160
- "PORTAL",
3161
- "PROJECT"
3162
- ]
3163
- },
3164
- "SSOApplicationId":{
3165
- "type":"string",
3166
- "max":64,
3167
- "min":1,
3168
- "pattern":"^[!-~]*"
3169
- },
3170
- "ServiceUnavailableException":{
3171
- "type":"structure",
3172
- "required":["message"],
3173
- "members":{
3174
- "message":{"shape":"ErrorMessage"}
3175
- },
3176
- "error":{"httpStatusCode":503},
3177
- "exception":true,
3178
- "fault":true
3179
- },
3180
- "TagKey":{
3181
- "type":"string",
3182
- "max":128,
3183
- "min":1
3184
- },
3185
- "TagKeyList":{
3186
- "type":"list",
3187
- "member":{"shape":"TagKey"},
3188
- "max":200,
3189
- "min":0
3190
- },
3191
- "TagMap":{
3192
- "type":"map",
3193
- "key":{"shape":"TagKey"},
3194
- "value":{"shape":"TagValue"},
3195
- "max":50,
3196
- "min":1
3197
- },
3198
- "TagResourceRequest":{
3199
- "type":"structure",
3200
- "required":[
3201
- "resourceArn",
3202
- "tags"
3203
- ],
3204
- "members":{
3205
- "resourceArn":{
3206
- "shape":"AmazonResourceName",
3207
- "location":"querystring",
3208
- "locationName":"resourceArn"
3209
- },
3210
- "tags":{"shape":"TagMap"}
3211
- }
3212
- },
3213
- "TagResourceResponse":{
3214
- "type":"structure",
3215
- "members":{
3216
- }
3217
- },
3218
- "TagValue":{
3219
- "type":"string",
3220
- "max":256,
3221
- "min":0
3222
- },
3223
- "ThrottlingException":{
3224
- "type":"structure",
3225
- "required":["message"],
3226
- "members":{
3227
- "message":{"shape":"ErrorMessage"}
3228
- },
3229
- "error":{"httpStatusCode":429},
3230
- "exception":true
3231
- },
3232
- "TimeInNanos":{
3233
- "type":"structure",
3234
- "required":["timeInSeconds"],
3235
- "members":{
3236
- "timeInSeconds":{"shape":"TimeInSeconds"},
3237
- "offsetInNanos":{"shape":"OffsetInNanos"}
3238
- }
3239
- },
3240
- "TimeInSeconds":{
3241
- "type":"long",
3242
- "max":31556889864403199,
3243
- "min":1
3244
- },
3245
- "TimeOrdering":{
3246
- "type":"string",
3247
- "enum":[
3248
- "ASCENDING",
3249
- "DESCENDING"
3250
- ]
3251
- },
3252
- "Timestamp":{"type":"timestamp"},
3253
- "Timestamps":{
3254
- "type":"list",
3255
- "member":{"shape":"TimeInNanos"}
3256
- },
3257
- "TooManyTagsException":{
3258
- "type":"structure",
3259
- "members":{
3260
- "message":{"shape":"ExceptionMessage"},
3261
- "resourceName":{"shape":"AmazonResourceName"}
3262
- },
3263
- "error":{"httpStatusCode":400},
3264
- "exception":true
3265
- },
3266
- "Transform":{
3267
- "type":"structure",
3268
- "required":[
3269
- "expression",
3270
- "variables"
3271
- ],
3272
- "members":{
3273
- "expression":{"shape":"Expression"},
3274
- "variables":{"shape":"ExpressionVariables"}
3275
- }
3276
- },
3277
- "TumblingWindow":{
3278
- "type":"structure",
3279
- "required":["interval"],
3280
- "members":{
3281
- "interval":{"shape":"Interval"}
3282
- }
3283
- },
3284
- "UntagResourceRequest":{
3285
- "type":"structure",
3286
- "required":[
3287
- "resourceArn",
3288
- "tagKeys"
3289
- ],
3290
- "members":{
3291
- "resourceArn":{
3292
- "shape":"AmazonResourceName",
3293
- "location":"querystring",
3294
- "locationName":"resourceArn"
3295
- },
3296
- "tagKeys":{
3297
- "shape":"TagKeyList",
3298
- "location":"querystring",
3299
- "locationName":"tagKeys"
3300
- }
3301
- }
3302
- },
3303
- "UntagResourceResponse":{
3304
- "type":"structure",
3305
- "members":{
3306
- }
3307
- },
3308
- "UpdateAccessPolicyRequest":{
3309
- "type":"structure",
3310
- "required":[
3311
- "accessPolicyId",
3312
- "accessPolicyIdentity",
3313
- "accessPolicyResource",
3314
- "accessPolicyPermission"
3315
- ],
3316
- "members":{
3317
- "accessPolicyId":{
3318
- "shape":"ID",
3319
- "location":"uri",
3320
- "locationName":"accessPolicyId"
3321
- },
3322
- "accessPolicyIdentity":{"shape":"Identity"},
3323
- "accessPolicyResource":{"shape":"Resource"},
3324
- "accessPolicyPermission":{"shape":"Permission"},
3325
- "clientToken":{
3326
- "shape":"ClientToken",
3327
- "idempotencyToken":true
3328
- }
3329
- }
3330
- },
3331
- "UpdateAccessPolicyResponse":{
3332
- "type":"structure",
3333
- "members":{
3334
- }
3335
- },
3336
- "UpdateAssetModelRequest":{
3337
- "type":"structure",
3338
- "required":[
3339
- "assetModelId",
3340
- "assetModelName"
3341
- ],
3342
- "members":{
3343
- "assetModelId":{
3344
- "shape":"ID",
3345
- "location":"uri",
3346
- "locationName":"assetModelId"
3347
- },
3348
- "assetModelName":{"shape":"Name"},
3349
- "assetModelDescription":{"shape":"Description"},
3350
- "assetModelProperties":{"shape":"AssetModelProperties"},
3351
- "assetModelHierarchies":{"shape":"AssetModelHierarchies"},
3352
- "clientToken":{
3353
- "shape":"ClientToken",
3354
- "idempotencyToken":true
3355
- }
3356
- }
3357
- },
3358
- "UpdateAssetModelResponse":{
3359
- "type":"structure",
3360
- "required":["assetModelStatus"],
3361
- "members":{
3362
- "assetModelStatus":{"shape":"AssetModelStatus"}
3363
- }
3364
- },
3365
- "UpdateAssetPropertyRequest":{
3366
- "type":"structure",
3367
- "required":[
3368
- "assetId",
3369
- "propertyId"
3370
- ],
3371
- "members":{
3372
- "assetId":{
3373
- "shape":"ID",
3374
- "location":"uri",
3375
- "locationName":"assetId"
3376
- },
3377
- "propertyId":{
3378
- "shape":"ID",
3379
- "location":"uri",
3380
- "locationName":"propertyId"
3381
- },
3382
- "propertyAlias":{"shape":"PropertyAlias"},
3383
- "propertyNotificationState":{"shape":"PropertyNotificationState"},
3384
- "clientToken":{
3385
- "shape":"ClientToken",
3386
- "idempotencyToken":true
3387
- }
3388
- }
3389
- },
3390
- "UpdateAssetRequest":{
3391
- "type":"structure",
3392
- "required":[
3393
- "assetId",
3394
- "assetName"
3395
- ],
3396
- "members":{
3397
- "assetId":{
3398
- "shape":"ID",
3399
- "location":"uri",
3400
- "locationName":"assetId"
3401
- },
3402
- "assetName":{"shape":"Name"},
3403
- "clientToken":{
3404
- "shape":"ClientToken",
3405
- "idempotencyToken":true
3406
- }
3407
- }
3408
- },
3409
- "UpdateAssetResponse":{
3410
- "type":"structure",
3411
- "required":["assetStatus"],
3412
- "members":{
3413
- "assetStatus":{"shape":"AssetStatus"}
3414
- }
3415
- },
3416
- "UpdateDashboardRequest":{
3417
- "type":"structure",
3418
- "required":[
3419
- "dashboardId",
3420
- "dashboardName",
3421
- "dashboardDefinition"
3422
- ],
3423
- "members":{
3424
- "dashboardId":{
3425
- "shape":"ID",
3426
- "location":"uri",
3427
- "locationName":"dashboardId"
3428
- },
3429
- "dashboardName":{"shape":"Name"},
3430
- "dashboardDescription":{"shape":"Description"},
3431
- "dashboardDefinition":{"shape":"DashboardDefinition"},
3432
- "clientToken":{
3433
- "shape":"ClientToken",
3434
- "idempotencyToken":true
3435
- }
3436
- }
3437
- },
3438
- "UpdateDashboardResponse":{
3439
- "type":"structure",
3440
- "members":{
3441
- }
3442
- },
3443
- "UpdateGatewayCapabilityConfigurationRequest":{
3444
- "type":"structure",
3445
- "required":[
3446
- "gatewayId",
3447
- "capabilityNamespace",
3448
- "capabilityConfiguration"
3449
- ],
3450
- "members":{
3451
- "gatewayId":{
3452
- "shape":"ID",
3453
- "location":"uri",
3454
- "locationName":"gatewayId"
3455
- },
3456
- "capabilityNamespace":{"shape":"CapabilityNamespace"},
3457
- "capabilityConfiguration":{"shape":"CapabilityConfiguration"}
3458
- }
3459
- },
3460
- "UpdateGatewayCapabilityConfigurationResponse":{
3461
- "type":"structure",
3462
- "required":[
3463
- "capabilityNamespace",
3464
- "capabilitySyncStatus"
3465
- ],
3466
- "members":{
3467
- "capabilityNamespace":{"shape":"CapabilityNamespace"},
3468
- "capabilitySyncStatus":{"shape":"CapabilitySyncStatus"}
3469
- }
3470
- },
3471
- "UpdateGatewayRequest":{
3472
- "type":"structure",
3473
- "required":[
3474
- "gatewayId",
3475
- "gatewayName"
3476
- ],
3477
- "members":{
3478
- "gatewayId":{
3479
- "shape":"ID",
3480
- "location":"uri",
3481
- "locationName":"gatewayId"
3482
- },
3483
- "gatewayName":{"shape":"Name"}
3484
- }
3485
- },
3486
- "UpdatePortalRequest":{
3487
- "type":"structure",
3488
- "required":[
3489
- "portalId",
3490
- "portalName",
3491
- "portalContactEmail",
3492
- "roleArn"
3493
- ],
3494
- "members":{
3495
- "portalId":{
3496
- "shape":"ID",
3497
- "location":"uri",
3498
- "locationName":"portalId"
3499
- },
3500
- "portalName":{"shape":"Name"},
3501
- "portalDescription":{"shape":"Description"},
3502
- "portalContactEmail":{"shape":"Email"},
3503
- "portalLogoImageFile":{"shape":"ImageFile"},
3504
- "roleArn":{"shape":"ARN"},
3505
- "clientToken":{
3506
- "shape":"ClientToken",
3507
- "idempotencyToken":true
3508
- }
3509
- }
3510
- },
3511
- "UpdatePortalResponse":{
3512
- "type":"structure",
3513
- "required":["portalStatus"],
3514
- "members":{
3515
- "portalStatus":{"shape":"PortalStatus"}
3516
- }
3517
- },
3518
- "UpdateProjectRequest":{
3519
- "type":"structure",
3520
- "required":[
3521
- "projectId",
3522
- "projectName"
3523
- ],
3524
- "members":{
3525
- "projectId":{
3526
- "shape":"ID",
3527
- "location":"uri",
3528
- "locationName":"projectId"
3529
- },
3530
- "projectName":{"shape":"Name"},
3531
- "projectDescription":{"shape":"Description"},
3532
- "clientToken":{
3533
- "shape":"ClientToken",
3534
- "idempotencyToken":true
3535
- }
3536
- }
3537
- },
3538
- "UpdateProjectResponse":{
3539
- "type":"structure",
3540
- "members":{
3541
- }
3542
- },
3543
- "Url":{
3544
- "type":"string",
3545
- "max":256,
3546
- "min":1,
3547
- "pattern":"^(http|https)\\://\\S+"
3548
- },
3549
- "UserIdentity":{
3550
- "type":"structure",
3551
- "required":["id"],
3552
- "members":{
3553
- "id":{"shape":"IdentityId"}
3554
- }
3555
- },
3556
- "VariableName":{
3557
- "type":"string",
3558
- "max":64,
3559
- "min":1,
3560
- "pattern":"^[a-z][a-z0-9_]*$"
3561
- },
3562
- "VariableValue":{
3563
- "type":"structure",
3564
- "required":["propertyId"],
3565
- "members":{
3566
- "propertyId":{"shape":"Macro"},
3567
- "hierarchyId":{"shape":"Macro"}
3568
- }
3569
- },
3570
- "Variant":{
3571
- "type":"structure",
3572
- "members":{
3573
- "stringValue":{"shape":"PropertyValueStringValue"},
3574
- "integerValue":{"shape":"PropertyValueIntegerValue"},
3575
- "doubleValue":{"shape":"PropertyValueDoubleValue"},
3576
- "booleanValue":{"shape":"PropertyValueBooleanValue"}
3577
- }
3578
- }
3579
- }
3580
- }