aws-sdk-core 2.11.401 → 3.77.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1204) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +84 -560
  4. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  5. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  6. data/lib/aws-sdk-core/binary.rb +6 -0
  7. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  8. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  9. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  10. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  11. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  12. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  13. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +11 -8
  16. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
  18. data/lib/aws-sdk-core/deprecations.rb +16 -10
  19. data/lib/aws-sdk-core/endpoint_cache.rb +14 -11
  20. data/lib/aws-sdk-core/errors.rb +123 -22
  21. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  22. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  23. data/lib/aws-sdk-core/instance_profile_credentials.rb +6 -99
  24. data/lib/aws-sdk-core/json.rb +9 -10
  25. data/lib/aws-sdk-core/json/builder.rb +4 -2
  26. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  27. data/lib/aws-sdk-core/json/handler.rb +22 -3
  28. data/lib/aws-sdk-core/json/parser.rb +1 -1
  29. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  30. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  31. data/lib/aws-sdk-core/pager.rb +30 -25
  32. data/lib/aws-sdk-core/param_converter.rb +3 -3
  33. data/lib/aws-sdk-core/param_validator.rb +60 -26
  34. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  35. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  36. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  37. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  38. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  39. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  40. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  41. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
  42. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
  43. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  44. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  45. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  46. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  47. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  48. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  49. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  50. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  51. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  52. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  53. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  54. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +30 -17
  55. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  56. data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
  57. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  58. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  59. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  60. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  61. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  62. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  63. data/lib/aws-sdk-core/query.rb +5 -0
  64. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  65. data/lib/aws-sdk-core/query/handler.rb +20 -16
  66. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  67. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  68. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  69. data/lib/aws-sdk-core/rest.rb +10 -0
  70. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  71. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  72. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  73. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  74. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  75. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  76. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  77. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  78. data/lib/aws-sdk-core/shared_config.rb +187 -15
  79. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  80. data/lib/aws-sdk-core/structure.rb +22 -13
  81. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  82. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  83. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  84. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  85. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  86. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  87. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  88. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  89. data/lib/aws-sdk-core/util.rb +66 -0
  90. data/lib/aws-sdk-core/waiters.rb +3 -0
  91. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  92. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  93. data/lib/aws-sdk-core/xml.rb +9 -0
  94. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  95. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  96. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  97. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  98. data/lib/aws-sdk-sts.rb +45 -0
  99. data/lib/aws-sdk-sts/client.rb +1840 -0
  100. data/lib/aws-sdk-sts/client_api.rb +320 -0
  101. data/lib/aws-sdk-sts/customizations.rb +0 -0
  102. data/lib/aws-sdk-sts/errors.rb +142 -0
  103. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  104. data/lib/aws-sdk-sts/resource.rb +23 -0
  105. data/lib/aws-sdk-sts/types.rb +1312 -0
  106. data/lib/seahorse.rb +60 -60
  107. data/lib/seahorse/client/async_base.rb +50 -0
  108. data/lib/seahorse/client/async_response.rb +62 -0
  109. data/lib/seahorse/client/base.rb +5 -9
  110. data/lib/seahorse/client/configuration.rb +4 -2
  111. data/lib/seahorse/client/h2/connection.rb +244 -0
  112. data/lib/seahorse/client/h2/handler.rb +151 -0
  113. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  114. data/lib/seahorse/client/http/async_response.rb +42 -0
  115. data/lib/seahorse/client/http/response.rb +10 -5
  116. data/lib/seahorse/client/logging/formatter.rb +2 -0
  117. data/lib/seahorse/client/logging/handler.rb +2 -0
  118. data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
  119. data/lib/seahorse/client/net_http/handler.rb +5 -0
  120. data/lib/seahorse/client/net_http/patches.rb +9 -1
  121. data/lib/seahorse/client/networking_error.rb +28 -0
  122. data/lib/seahorse/client/plugin.rb +66 -6
  123. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  124. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  125. data/lib/seahorse/client/plugins/h2.rb +64 -0
  126. data/lib/seahorse/client/plugins/logging.rb +17 -19
  127. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  128. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  129. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  130. data/lib/seahorse/client/request_context.rb +5 -0
  131. data/lib/seahorse/model/api.rb +33 -0
  132. data/lib/seahorse/model/authorizer.rb +21 -0
  133. data/lib/seahorse/model/operation.rb +11 -0
  134. data/lib/seahorse/model/shapes.rb +44 -2
  135. data/lib/seahorse/util.rb +1 -22
  136. metadata +98 -1077
  137. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
  138. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  139. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
  140. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  141. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  142. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  143. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  144. data/apis/acm/2015-12-08/api-2.json +0 -843
  145. data/apis/acm/2015-12-08/examples-1.json +0 -5
  146. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  147. data/apis/acm/2015-12-08/smoke.json +0 -18
  148. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  149. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4003
  150. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  151. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  152. data/apis/amplify/2017-07-25/api-2.json +0 -2171
  153. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  154. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  155. data/apis/apigateway/2015-07-09/api-2.json +0 -5384
  156. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  157. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  158. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  159. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  160. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  161. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
  162. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  163. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -779
  164. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
  165. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  166. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  167. data/apis/application-insights/2018-11-25/api-2.json +0 -721
  168. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  169. data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
  170. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  171. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  172. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  173. data/apis/appmesh/2019-01-25/api-2.json +0 -3424
  174. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  175. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  176. data/apis/appstream/2016-12-01/api-2.json +0 -2356
  177. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  178. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  179. data/apis/appstream/2016-12-01/smoke.json +0 -11
  180. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  181. data/apis/appsync/2017-07-25/api-2.json +0 -2003
  182. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  183. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  184. data/apis/athena/2017-05-18/api-2.json +0 -985
  185. data/apis/athena/2017-05-18/examples-1.json +0 -5
  186. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  187. data/apis/athena/2017-05-18/smoke.json +0 -11
  188. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  189. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  190. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  191. data/apis/autoscaling/2011-01-01/api-2.json +0 -2464
  192. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  193. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  194. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  195. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  196. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  197. data/apis/backup/2018-11-15/api-2.json +0 -2150
  198. data/apis/backup/2018-11-15/examples-1.json +0 -5
  199. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  200. data/apis/batch/2016-08-10/api-2.json +0 -1137
  201. data/apis/batch/2016-08-10/examples-1.json +0 -589
  202. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  203. data/apis/batch/2016-08-10/smoke.json +0 -11
  204. data/apis/budgets/2016-10-20/api-2.json +0 -830
  205. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  206. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  207. data/apis/ce/2017-10-25/api-2.json +0 -1387
  208. data/apis/ce/2017-10-25/examples-1.json +0 -5
  209. data/apis/ce/2017-10-25/paginators-1.json +0 -14
  210. data/apis/chime/2018-05-01/api-2.json +0 -4041
  211. data/apis/chime/2018-05-01/examples-1.json +0 -5
  212. data/apis/chime/2018-05-01/paginators-1.json +0 -49
  213. data/apis/cloud9/2017-09-23/api-2.json +0 -549
  214. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  215. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  216. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  217. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  218. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  219. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  220. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  221. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  222. data/apis/cloudformation/2010-05-15/api-2.json +0 -3389
  223. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  224. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -57
  225. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  226. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  227. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -257
  228. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  229. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  230. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  231. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  232. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  233. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  234. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  235. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  236. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  237. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  238. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  239. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  240. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  241. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  242. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  243. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  244. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  245. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  246. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  247. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  248. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  249. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  250. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  251. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  252. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  253. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  254. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  255. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  256. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  257. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  258. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  259. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  260. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  261. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  262. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  263. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  264. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  265. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  266. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  267. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  268. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  269. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  270. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  271. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  272. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  273. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  274. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  275. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  276. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  277. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  278. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  279. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  280. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  281. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  282. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  283. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  284. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  285. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  286. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  287. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  288. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1048
  289. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  290. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  291. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  292. data/apis/codebuild/2016-10-06/api-2.json +0 -1293
  293. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  294. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  295. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  296. data/apis/codecommit/2015-04-13/api-2.json +0 -4248
  297. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  298. data/apis/codecommit/2015-04-13/paginators-1.json +0 -49
  299. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  300. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  301. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  302. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  303. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  304. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  305. data/apis/codepipeline/2015-07-09/api-2.json +0 -2441
  306. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  307. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  308. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  309. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  310. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  311. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  312. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  313. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  314. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  315. data/apis/codestar/2017-04-19/smoke.json +0 -11
  316. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
  317. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  318. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  319. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5395
  320. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  321. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  322. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  323. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  324. data/apis/comprehend/2017-11-27/api-2.json +0 -2367
  325. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  326. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  327. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -681
  328. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  329. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  330. data/apis/config/2014-11-12/api-2.json +0 -4269
  331. data/apis/config/2014-11-12/examples-1.json +0 -5
  332. data/apis/config/2014-11-12/paginators-1.json +0 -21
  333. data/apis/config/2014-11-12/smoke.json +0 -19
  334. data/apis/connect/2017-08-08/api-2.json +0 -2048
  335. data/apis/connect/2017-08-08/examples-1.json +0 -5
  336. data/apis/connect/2017-08-08/paginators-1.json +0 -62
  337. data/apis/cur/2017-01-06/api-2.json +0 -277
  338. data/apis/cur/2017-01-06/examples-1.json +0 -102
  339. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  340. data/apis/cur/2017-01-06/smoke.json +0 -11
  341. data/apis/dataexchange/2017-07-25/api-2.json +0 -2263
  342. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  343. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  344. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  345. data/apis/datasync/2018-11-09/api-2.json +0 -1337
  346. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  347. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  348. data/apis/dax/2017-04-19/api-2.json +0 -1140
  349. data/apis/dax/2017-04-19/examples-1.json +0 -5
  350. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  351. data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
  352. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  353. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  354. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  355. data/apis/directconnect/2012-10-25/api-2.json +0 -2074
  356. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  357. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  358. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  359. data/apis/discovery/2015-11-01/api-2.json +0 -1334
  360. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  361. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  362. data/apis/discovery/2015-11-01/smoke.json +0 -11
  363. data/apis/dlm/2018-01-12/api-2.json +0 -609
  364. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  365. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  366. data/apis/dms/2016-01-01/api-2.json +0 -2296
  367. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  368. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  369. data/apis/dms/2016-01-01/smoke.json +0 -18
  370. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  371. data/apis/docdb/2014-10-31/api-2.json +0 -2534
  372. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  373. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  374. data/apis/docdb/2014-10-31/smoke.json +0 -18
  375. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  376. data/apis/ds/2015-04-16/api-2.json +0 -2634
  377. data/apis/ds/2015-04-16/examples-1.json +0 -5
  378. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  379. data/apis/ds/2015-04-16/smoke.json +0 -20
  380. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  381. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  382. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  383. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  384. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  385. data/apis/dynamodb/2012-08-10/api-2.json +0 -2812
  386. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  387. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  388. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  389. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  390. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  391. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  392. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  393. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  394. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  395. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  396. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  397. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  398. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  399. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  400. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  401. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  402. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  403. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  404. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  405. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  406. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  407. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  408. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  409. data/apis/ec2/2016-11-15/api-2.json +0 -25712
  410. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  411. data/apis/ec2/2016-11-15/paginators-1.json +0 -450
  412. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  413. data/apis/ec2/2016-11-15/smoke.json +0 -20
  414. data/apis/ec2/2016-11-15/waiters-2.json +0 -622
  415. data/apis/ecr/2015-09-21/api-2.json +0 -1615
  416. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  417. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  418. data/apis/ecr/2015-09-21/smoke.json +0 -18
  419. data/apis/ecs/2014-11-13/api-2.json +0 -2902
  420. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  421. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  422. data/apis/ecs/2014-11-13/smoke.json +0 -18
  423. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  424. data/apis/eks/2017-11-01/api-2.json +0 -1211
  425. data/apis/eks/2017-11-01/examples-1.json +0 -135
  426. data/apis/eks/2017-11-01/paginators-1.json +0 -22
  427. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  428. data/apis/elasticache/2015-02-02/api-2.json +0 -3301
  429. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  430. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  431. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  432. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  433. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  434. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  435. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  436. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  437. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -897
  438. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  439. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  440. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  441. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  442. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  443. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  444. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  445. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  446. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2343
  447. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  448. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  449. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  450. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  451. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2193
  452. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  453. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  454. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  455. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  456. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  457. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  458. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  459. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  460. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  461. data/apis/email/2010-12-01/api-2.json +0 -3182
  462. data/apis/email/2010-12-01/examples-1.json +0 -1021
  463. data/apis/email/2010-12-01/paginators-1.json +0 -18
  464. data/apis/email/2010-12-01/smoke.json +0 -18
  465. data/apis/email/2010-12-01/waiters-2.json +0 -18
  466. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  467. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  468. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  469. data/apis/es/2015-01-01/api-2.json +0 -1572
  470. data/apis/es/2015-01-01/examples-1.json +0 -5
  471. data/apis/es/2015-01-01/paginators-1.json +0 -29
  472. data/apis/es/2015-01-01/smoke.json +0 -18
  473. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  474. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  475. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  476. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  477. data/apis/events/2015-10-07/api-2.json +0 -1462
  478. data/apis/events/2015-10-07/examples-1.json +0 -5
  479. data/apis/events/2015-10-07/paginators-1.json +0 -4
  480. data/apis/events/2015-10-07/smoke.json +0 -18
  481. data/apis/firehose/2015-08-04/api-2.json +0 -1383
  482. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  483. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  484. data/apis/firehose/2015-08-04/smoke.json +0 -18
  485. data/apis/fms/2018-01-01/api-2.json +0 -701
  486. data/apis/fms/2018-01-01/examples-1.json +0 -5
  487. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  488. data/apis/forecast/2018-06-26/api-2.json +0 -1373
  489. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  490. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  491. data/apis/forecastquery/2018-06-26/api-2.json +0 -154
  492. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  493. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  494. data/apis/fsx/2018-03-01/api-2.json +0 -1050
  495. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  496. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  497. data/apis/gamelift/2015-10-01/api-2.json +0 -3495
  498. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  499. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  500. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  501. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  502. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  503. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  504. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  505. data/apis/glacier/2012-06-01/smoke.json +0 -18
  506. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  507. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
  508. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  509. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  510. data/apis/glue/2017-03-31/api-2.json +0 -6297
  511. data/apis/glue/2017-03-31/examples-1.json +0 -5
  512. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  513. data/apis/glue/2017-03-31/smoke.json +0 -11
  514. data/apis/greengrass/2017-06-07/api-2.json +0 -5106
  515. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  516. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  517. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  518. data/apis/guardduty/2017-11-28/api-2.json +0 -3508
  519. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  520. data/apis/guardduty/2017-11-28/paginators-1.json +0 -51
  521. data/apis/health/2016-08-04/api-2.json +0 -554
  522. data/apis/health/2016-08-04/examples-1.json +0 -5
  523. data/apis/health/2016-08-04/paginators-1.json +0 -31
  524. data/apis/health/2016-08-04/smoke.json +0 -11
  525. data/apis/iam/2010-05-08/api-2.json +0 -5787
  526. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  527. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  528. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  529. data/apis/iam/2010-05-08/smoke.json +0 -18
  530. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  531. data/apis/importexport/2010-06-01/api-2.json +0 -667
  532. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  533. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  534. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  535. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  536. data/apis/inspector/2016-02-16/smoke.json +0 -18
  537. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  538. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  539. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  540. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  541. data/apis/iot/2015-05-28/api-2.json +0 -10148
  542. data/apis/iot/2015-05-28/examples-1.json +0 -5
  543. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  544. data/apis/iot/2015-05-28/smoke.json +0 -18
  545. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  546. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  547. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  548. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  549. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
  550. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  551. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  552. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  553. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  554. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  555. data/apis/iotevents/2018-07-27/api-2.json +0 -1144
  556. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  557. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  558. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  559. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  560. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  561. data/apis/kafka/2018-11-14/api-2.json +0 -1950
  562. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  563. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -418
  564. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  565. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  566. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  567. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  568. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  569. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  570. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  571. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  572. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  573. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  574. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  575. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  576. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  577. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
  578. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  579. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  580. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
  581. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  582. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
  583. data/apis/kms/2014-11-01/api-2.json +0 -1834
  584. data/apis/kms/2014-11-01/examples-1.json +0 -906
  585. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  586. data/apis/kms/2014-11-01/smoke.json +0 -19
  587. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  588. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  589. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  590. data/apis/lambda/2014-11-11/api-2.json +0 -668
  591. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  592. data/apis/lambda/2015-03-31/api-2.json +0 -2356
  593. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  594. data/apis/lambda/2015-03-31/paginators-1.json +0 -40
  595. data/apis/lambda/2015-03-31/smoke.json +0 -18
  596. data/apis/lambda/2015-03-31/waiters-2.json +0 -22
  597. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  598. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  599. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  600. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  601. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  602. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  603. data/apis/lightsail/2016-11-28/api-2.json +0 -5015
  604. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  605. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  606. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  607. data/apis/logs/2014-03-28/api-2.json +0 -1701
  608. data/apis/logs/2014-03-28/examples-1.json +0 -5
  609. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  610. data/apis/logs/2014-03-28/smoke.json +0 -19
  611. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  612. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  613. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  614. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  615. data/apis/macie/2017-12-19/api-2.json +0 -365
  616. data/apis/macie/2017-12-19/examples-1.json +0 -5
  617. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  618. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  619. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  620. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  621. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
  622. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  623. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  624. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  625. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  626. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  627. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  628. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
  629. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  630. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8559
  631. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  632. data/apis/medialive/2017-10-14/api-2.json +0 -9023
  633. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  634. data/apis/medialive/2017-10-14/waiters-2.json +0 -111
  635. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1498
  636. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  637. data/apis/mediapackage/2017-10-12/api-2.json +0 -2467
  638. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  639. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  640. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  641. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  642. data/apis/mediastore/2017-09-01/api-2.json +0 -735
  643. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  644. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  645. data/apis/mediatailor/2018-04-23/api-2.json +0 -524
  646. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  647. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
  648. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  649. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  650. data/apis/mobile/2017-07-01/api-2.json +0 -551
  651. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  652. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  653. data/apis/monitoring/2010-08-01/api-2.json +0 -1526
  654. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  655. data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
  656. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  657. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  658. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  659. data/apis/mq/2017-11-27/api-2.json +0 -2538
  660. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  661. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  662. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  663. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  664. data/apis/neptune/2014-10-31/api-2.json +0 -3515
  665. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  666. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  667. data/apis/neptune/2014-10-31/smoke.json +0 -18
  668. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  669. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  670. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  671. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  672. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  673. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  674. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  675. data/apis/opsworkscm/2016-11-01/api-2.json +0 -817
  676. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  677. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  678. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  679. data/apis/organizations/2016-11-28/api-2.json +0 -2317
  680. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  681. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  682. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  683. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  684. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  685. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
  686. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  687. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  688. data/apis/personalize/2018-05-22/api-2.json +0 -1863
  689. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  690. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  691. data/apis/pi/2018-02-27/api-2.json +0 -253
  692. data/apis/pi/2018-02-27/examples-1.json +0 -5
  693. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  694. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  695. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  696. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  697. data/apis/pinpoint/2016-12-01/api-2.json +0 -11189
  698. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  699. data/apis/polly/2016-06-10/api-2.json +0 -832
  700. data/apis/polly/2016-06-10/examples-1.json +0 -171
  701. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  702. data/apis/polly/2016-06-10/smoke.json +0 -11
  703. data/apis/pricing/2017-10-15/api-2.json +0 -227
  704. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  705. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  706. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  707. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  708. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  709. data/apis/qldb/2019-01-02/api-2.json +0 -776
  710. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  711. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  712. data/apis/quicksight/2018-04-01/api-2.json +0 -1223
  713. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  714. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  715. data/apis/ram/2018-01-04/api-2.json +0 -1021
  716. data/apis/ram/2018-01-04/examples-1.json +0 -5
  717. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  718. data/apis/rds-data/2018-08-01/api-2.json +0 -540
  719. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  720. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  721. data/apis/rds/2013-01-10/api-2.json +0 -2903
  722. data/apis/rds/2013-01-10/examples-1.json +0 -5
  723. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  724. data/apis/rds/2013-01-10/smoke.json +0 -18
  725. data/apis/rds/2013-02-12/api-2.json +0 -3059
  726. data/apis/rds/2013-02-12/examples-1.json +0 -5
  727. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  728. data/apis/rds/2013-02-12/smoke.json +0 -18
  729. data/apis/rds/2013-09-09/api-2.json +0 -3160
  730. data/apis/rds/2013-09-09/examples-1.json +0 -5
  731. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  732. data/apis/rds/2013-09-09/smoke.json +0 -18
  733. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  734. data/apis/rds/2014-09-01/api-2.json +0 -3273
  735. data/apis/rds/2014-09-01/examples-1.json +0 -5
  736. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  737. data/apis/rds/2014-09-01/smoke.json +0 -18
  738. data/apis/rds/2014-10-31/api-2.json +0 -6880
  739. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  740. data/apis/rds/2014-10-31/paginators-1.json +0 -140
  741. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  742. data/apis/rds/2014-10-31/smoke.json +0 -18
  743. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  744. data/apis/rds/2015-11-12/api-2.json +0 -5509
  745. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  746. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  747. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  748. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  749. data/apis/redshift/2012-12-01/api-2.json +0 -4995
  750. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  751. data/apis/redshift/2012-12-01/paginators-1.json +0 -100
  752. data/apis/redshift/2012-12-01/smoke.json +0 -18
  753. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  754. data/apis/rekognition/2016-06-27/api-2.json +0 -2142
  755. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  756. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  757. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  758. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  759. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  760. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  761. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
  762. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  763. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  764. data/apis/robomaker/2018-06-29/api-2.json +0 -2160
  765. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  766. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  767. data/apis/route53/2013-04-01/api-2.json +0 -3780
  768. data/apis/route53/2013-04-01/examples-1.json +0 -762
  769. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  770. data/apis/route53/2013-04-01/smoke.json +0 -18
  771. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  772. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  773. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  774. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  775. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  776. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  777. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  778. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  779. data/apis/runtime.lex/2016-11-28/api-2.json +0 -693
  780. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  781. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  782. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -165
  783. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  784. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  785. data/apis/s3/2006-03-01/api-2.json +0 -6602
  786. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  787. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  788. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  789. data/apis/s3/2006-03-01/smoke.json +0 -11
  790. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  791. data/apis/s3control/2018-08-20/api-2.json +0 -1044
  792. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  793. data/apis/s3control/2018-08-20/paginators-1.json +0 -9
  794. data/apis/sagemaker/2017-07-24/api-2.json +0 -5289
  795. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  796. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  797. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  798. data/apis/savingsplans/2019-06-28/api-2.json +0 -749
  799. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  800. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  801. data/apis/sdb/2009-04-15/api-2.json +0 -955
  802. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  803. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  804. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  805. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  806. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  807. data/apis/securityhub/2018-10-26/api-2.json +0 -2105
  808. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  809. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  810. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
  811. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  812. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  813. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  814. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  815. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  816. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  817. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  818. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  819. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  820. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  821. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  822. data/apis/sesv2/2019-09-27/api-2.json +0 -2093
  823. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  824. data/apis/sesv2/2019-09-27/paginators-1.json +0 -34
  825. data/apis/shield/2016-06-02/api-2.json +0 -893
  826. data/apis/shield/2016-06-02/examples-1.json +0 -5
  827. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  828. data/apis/shield/2016-06-02/smoke.json +0 -11
  829. data/apis/signer/2017-08-25/api-2.json +0 -817
  830. data/apis/signer/2017-08-25/examples-1.json +0 -5
  831. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  832. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  833. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  834. data/apis/sms/2016-10-24/api-2.json +0 -1366
  835. data/apis/sms/2016-10-24/examples-1.json +0 -5
  836. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  837. data/apis/sms/2016-10-24/smoke.json +0 -18
  838. data/apis/snowball/2016-06-30/api-2.json +0 -955
  839. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  840. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  841. data/apis/snowball/2016-06-30/smoke.json +0 -11
  842. data/apis/sns/2010-03-31/api-2.json +0 -1468
  843. data/apis/sns/2010-03-31/examples-1.json +0 -5
  844. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  845. data/apis/sns/2010-03-31/resources-1.json +0 -327
  846. data/apis/sns/2010-03-31/smoke.json +0 -19
  847. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  848. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  849. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  850. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  851. data/apis/sqs/2012-11-05/smoke.json +0 -18
  852. data/apis/ssm/2014-11-06/api-2.json +0 -9052
  853. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  854. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  855. data/apis/ssm/2014-11-06/smoke.json +0 -18
  856. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  857. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  858. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  859. data/apis/sso/2019-06-10/api-2.json +0 -281
  860. data/apis/sso/2019-06-10/examples-1.json +0 -5
  861. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  862. data/apis/states/2016-11-23/api-2.json +0 -1409
  863. data/apis/states/2016-11-23/examples-1.json +0 -5
  864. data/apis/states/2016-11-23/paginators-1.json +0 -28
  865. data/apis/states/2016-11-23/smoke.json +0 -11
  866. data/apis/storagegateway/2013-06-30/api-2.json +0 -3166
  867. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  868. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  869. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  870. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  871. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  872. data/apis/sts/2011-06-15/api-2.json +0 -562
  873. data/apis/sts/2011-06-15/examples-1.json +0 -207
  874. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  875. data/apis/sts/2011-06-15/smoke.json +0 -19
  876. data/apis/support/2013-04-15/api-2.json +0 -773
  877. data/apis/support/2013-04-15/examples-1.json +0 -5
  878. data/apis/support/2013-04-15/paginators-1.json +0 -25
  879. data/apis/support/2013-04-15/smoke.json +0 -22
  880. data/apis/swf/2012-01-25/api-2.json +0 -2792
  881. data/apis/swf/2012-01-25/examples-1.json +0 -5
  882. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  883. data/apis/textract/2018-06-27/api-2.json +0 -572
  884. data/apis/textract/2018-06-27/examples-1.json +0 -5
  885. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  886. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -262
  887. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  888. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  889. data/apis/transcribe/2017-10-26/api-2.json +0 -524
  890. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  891. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  892. data/apis/transfer/2018-11-05/api-2.json +0 -940
  893. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  894. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  895. data/apis/translate/2017-07-01/api-2.json +0 -408
  896. data/apis/translate/2017-07-01/examples-1.json +0 -5
  897. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  898. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  899. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  900. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  901. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  902. data/apis/waf/2015-08-24/api-2.json +0 -3857
  903. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  904. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  905. data/apis/waf/2015-08-24/smoke.json +0 -21
  906. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  907. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  908. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  909. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  910. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  911. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  912. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  913. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  914. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  915. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  916. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  917. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  918. data/apis/workspaces/2015-04-08/api-2.json +0 -1992
  919. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  920. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  921. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  922. data/apis/xray/2016-04-12/api-2.json +0 -1352
  923. data/apis/xray/2016-04-12/examples-1.json +0 -5
  924. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  925. data/bin/aws.rb +0 -180
  926. data/endpoints.json +0 -5641
  927. data/lib/aws-sdk-core/acm.rb +0 -7
  928. data/lib/aws-sdk-core/acmpca.rb +0 -7
  929. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  930. data/lib/aws-sdk-core/amplify.rb +0 -6
  931. data/lib/aws-sdk-core/api/builder.rb +0 -129
  932. data/lib/aws-sdk-core/api/customizations.rb +0 -303
  933. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  934. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  935. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  936. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  937. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  938. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  939. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  940. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  941. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  942. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  943. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  944. data/lib/aws-sdk-core/apigateway.rb +0 -6
  945. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  946. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  947. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  948. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  949. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  950. data/lib/aws-sdk-core/appmesh.rb +0 -6
  951. data/lib/aws-sdk-core/appstream.rb +0 -7
  952. data/lib/aws-sdk-core/appsync.rb +0 -6
  953. data/lib/aws-sdk-core/athena.rb +0 -6
  954. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  955. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  956. data/lib/aws-sdk-core/backup.rb +0 -6
  957. data/lib/aws-sdk-core/batch.rb +0 -6
  958. data/lib/aws-sdk-core/budgets.rb +0 -6
  959. data/lib/aws-sdk-core/checksums.rb +0 -51
  960. data/lib/aws-sdk-core/chime.rb +0 -6
  961. data/lib/aws-sdk-core/client.rb +0 -62
  962. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  963. data/lib/aws-sdk-core/cloud9.rb +0 -6
  964. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  965. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  966. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  967. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  968. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  969. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  970. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  971. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  972. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  973. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  974. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  975. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  976. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  977. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  978. data/lib/aws-sdk-core/codebuild.rb +0 -6
  979. data/lib/aws-sdk-core/codecommit.rb +0 -6
  980. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  981. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  982. data/lib/aws-sdk-core/codestar.rb +0 -6
  983. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  984. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  985. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  986. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  987. data/lib/aws-sdk-core/comprehend.rb +0 -6
  988. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  989. data/lib/aws-sdk-core/configservice.rb +0 -6
  990. data/lib/aws-sdk-core/connect.rb +0 -6
  991. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  992. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  993. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  994. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  995. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  996. data/lib/aws-sdk-core/datasync.rb +0 -6
  997. data/lib/aws-sdk-core/dax.rb +0 -6
  998. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  999. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1000. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1001. data/lib/aws-sdk-core/dlm.rb +0 -6
  1002. data/lib/aws-sdk-core/docdb.rb +0 -7
  1003. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1004. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1005. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1006. data/lib/aws-sdk-core/ec2.rb +0 -8
  1007. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1008. data/lib/aws-sdk-core/ecr.rb +0 -6
  1009. data/lib/aws-sdk-core/ecs.rb +0 -7
  1010. data/lib/aws-sdk-core/efs.rb +0 -6
  1011. data/lib/aws-sdk-core/eks.rb +0 -7
  1012. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1013. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1014. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1015. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1016. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1017. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1018. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1019. data/lib/aws-sdk-core/emr.rb +0 -7
  1020. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1021. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1022. data/lib/aws-sdk-core/firehose.rb +0 -6
  1023. data/lib/aws-sdk-core/fms.rb +0 -6
  1024. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1025. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1026. data/lib/aws-sdk-core/fsx.rb +0 -6
  1027. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1028. data/lib/aws-sdk-core/glacier.rb +0 -8
  1029. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1030. data/lib/aws-sdk-core/glue.rb +0 -6
  1031. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1032. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1033. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1034. data/lib/aws-sdk-core/health.rb +0 -6
  1035. data/lib/aws-sdk-core/iam.rb +0 -8
  1036. data/lib/aws-sdk-core/importexport.rb +0 -5
  1037. data/lib/aws-sdk-core/inspector.rb +0 -6
  1038. data/lib/aws-sdk-core/iot.rb +0 -6
  1039. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1040. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1041. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1042. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1043. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1044. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1045. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1046. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1047. data/lib/aws-sdk-core/kafka.rb +0 -5
  1048. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1049. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1050. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1051. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1052. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1053. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1054. data/lib/aws-sdk-core/kms.rb +0 -6
  1055. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1056. data/lib/aws-sdk-core/lambda.rb +0 -7
  1057. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1058. data/lib/aws-sdk-core/lex.rb +0 -6
  1059. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1060. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1061. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1062. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1063. data/lib/aws-sdk-core/macie.rb +0 -6
  1064. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1065. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1066. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1067. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1068. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1069. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1070. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1071. data/lib/aws-sdk-core/medialive.rb +0 -6
  1072. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1073. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1074. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1075. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1076. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1077. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1078. data/lib/aws-sdk-core/mobile.rb +0 -6
  1079. data/lib/aws-sdk-core/mq.rb +0 -5
  1080. data/lib/aws-sdk-core/mturk.rb +0 -6
  1081. data/lib/aws-sdk-core/neptune.rb +0 -7
  1082. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1083. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1084. data/lib/aws-sdk-core/organizations.rb +0 -6
  1085. data/lib/aws-sdk-core/partitions.rb +0 -174
  1086. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1087. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1088. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1089. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1090. data/lib/aws-sdk-core/personalize.rb +0 -6
  1091. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1092. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1093. data/lib/aws-sdk-core/pi.rb +0 -6
  1094. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1095. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1096. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1097. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1098. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1099. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1100. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1101. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1102. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1103. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1104. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1105. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1106. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1107. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1108. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1109. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1110. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1111. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1112. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1113. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1114. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1115. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1116. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1117. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1118. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1119. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1120. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1121. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1122. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1123. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1124. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1125. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1126. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1127. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1128. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1129. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1130. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1131. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1132. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1133. data/lib/aws-sdk-core/polly.rb +0 -14
  1134. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1135. data/lib/aws-sdk-core/pricing.rb +0 -6
  1136. data/lib/aws-sdk-core/qldb.rb +0 -6
  1137. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1138. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1139. data/lib/aws-sdk-core/ram.rb +0 -6
  1140. data/lib/aws-sdk-core/rds.rb +0 -16
  1141. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1142. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1143. data/lib/aws-sdk-core/redshift.rb +0 -7
  1144. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1145. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1146. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1147. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1148. data/lib/aws-sdk-core/route53.rb +0 -7
  1149. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1150. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1151. data/lib/aws-sdk-core/s3.rb +0 -26
  1152. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1153. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1154. data/lib/aws-sdk-core/s3control.rb +0 -6
  1155. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1156. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1157. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1158. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1159. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1160. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1161. data/lib/aws-sdk-core/service.rb +0 -4
  1162. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1163. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1164. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1165. data/lib/aws-sdk-core/ses.rb +0 -7
  1166. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1167. data/lib/aws-sdk-core/shield.rb +0 -6
  1168. data/lib/aws-sdk-core/signer.rb +0 -7
  1169. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1170. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1171. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1172. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1173. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1174. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1175. data/lib/aws-sdk-core/sms.rb +0 -6
  1176. data/lib/aws-sdk-core/snowball.rb +0 -6
  1177. data/lib/aws-sdk-core/sns.rb +0 -7
  1178. data/lib/aws-sdk-core/sqs.rb +0 -7
  1179. data/lib/aws-sdk-core/ssm.rb +0 -6
  1180. data/lib/aws-sdk-core/sso.rb +0 -6
  1181. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1182. data/lib/aws-sdk-core/states.rb +0 -6
  1183. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1184. data/lib/aws-sdk-core/sts.rb +0 -6
  1185. data/lib/aws-sdk-core/support.rb +0 -6
  1186. data/lib/aws-sdk-core/swf.rb +0 -6
  1187. data/lib/aws-sdk-core/textract.rb +0 -6
  1188. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1189. data/lib/aws-sdk-core/transfer.rb +0 -6
  1190. data/lib/aws-sdk-core/translate.rb +0 -6
  1191. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1192. data/lib/aws-sdk-core/version.rb +0 -3
  1193. data/lib/aws-sdk-core/waf.rb +0 -6
  1194. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1195. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1196. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1197. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1198. data/lib/aws-sdk-core/worklink.rb +0 -6
  1199. data/lib/aws-sdk-core/workmail.rb +0 -6
  1200. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1201. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1202. data/lib/aws-sdk-core/xray.rb +0 -6
  1203. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1204. data/service-models.json +0 -797
@@ -1,2059 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "metadata": {
4
- "apiVersion": "2019-05-23",
5
- "endpointPrefix": "groundstation",
6
- "jsonVersion": "1.1",
7
- "protocol": "rest-json",
8
- "serviceFullName": "AWS Ground Station",
9
- "serviceId": "GroundStation",
10
- "signatureVersion": "v4",
11
- "signingName": "groundstation",
12
- "uid": "groundstation-2019-05-23"
13
- },
14
- "operations": {
15
- "CancelContact": {
16
- "name": "CancelContact",
17
- "http": {
18
- "method": "DELETE",
19
- "requestUri": "/contact/{contactId}",
20
- "responseCode": 200
21
- },
22
- "input": {
23
- "shape": "CancelContactRequest"
24
- },
25
- "output": {
26
- "shape": "ContactIdResponse"
27
- },
28
- "errors": [
29
- {
30
- "shape": "DependencyException"
31
- },
32
- {
33
- "shape": "InvalidParameterException"
34
- },
35
- {
36
- "shape": "ResourceNotFoundException"
37
- }
38
- ],
39
- "idempotent": true
40
- },
41
- "CreateConfig": {
42
- "name": "CreateConfig",
43
- "http": {
44
- "method": "POST",
45
- "requestUri": "/config",
46
- "responseCode": 200
47
- },
48
- "input": {
49
- "shape": "CreateConfigRequest"
50
- },
51
- "output": {
52
- "shape": "ConfigIdResponse"
53
- },
54
- "errors": [
55
- {
56
- "shape": "DependencyException"
57
- },
58
- {
59
- "shape": "InvalidParameterException"
60
- },
61
- {
62
- "shape": "ResourceNotFoundException"
63
- }
64
- ]
65
- },
66
- "CreateDataflowEndpointGroup": {
67
- "name": "CreateDataflowEndpointGroup",
68
- "http": {
69
- "method": "POST",
70
- "requestUri": "/dataflowEndpointGroup",
71
- "responseCode": 200
72
- },
73
- "input": {
74
- "shape": "CreateDataflowEndpointGroupRequest"
75
- },
76
- "output": {
77
- "shape": "DataflowEndpointGroupIdResponse"
78
- },
79
- "errors": [
80
- {
81
- "shape": "DependencyException"
82
- },
83
- {
84
- "shape": "InvalidParameterException"
85
- },
86
- {
87
- "shape": "ResourceNotFoundException"
88
- }
89
- ]
90
- },
91
- "CreateMissionProfile": {
92
- "name": "CreateMissionProfile",
93
- "http": {
94
- "method": "POST",
95
- "requestUri": "/missionprofile",
96
- "responseCode": 200
97
- },
98
- "input": {
99
- "shape": "CreateMissionProfileRequest"
100
- },
101
- "output": {
102
- "shape": "MissionProfileIdResponse"
103
- },
104
- "errors": [
105
- {
106
- "shape": "DependencyException"
107
- },
108
- {
109
- "shape": "InvalidParameterException"
110
- },
111
- {
112
- "shape": "ResourceNotFoundException"
113
- }
114
- ]
115
- },
116
- "DeleteConfig": {
117
- "name": "DeleteConfig",
118
- "http": {
119
- "method": "DELETE",
120
- "requestUri": "/config/{configType}/{configId}",
121
- "responseCode": 200
122
- },
123
- "input": {
124
- "shape": "DeleteConfigRequest"
125
- },
126
- "output": {
127
- "shape": "ConfigIdResponse"
128
- },
129
- "errors": [
130
- {
131
- "shape": "DependencyException"
132
- },
133
- {
134
- "shape": "InvalidParameterException"
135
- },
136
- {
137
- "shape": "ResourceNotFoundException"
138
- }
139
- ],
140
- "idempotent": true
141
- },
142
- "DeleteDataflowEndpointGroup": {
143
- "name": "DeleteDataflowEndpointGroup",
144
- "http": {
145
- "method": "DELETE",
146
- "requestUri": "/dataflowEndpointGroup/{dataflowEndpointGroupId}",
147
- "responseCode": 200
148
- },
149
- "input": {
150
- "shape": "DeleteDataflowEndpointGroupRequest"
151
- },
152
- "output": {
153
- "shape": "DataflowEndpointGroupIdResponse"
154
- },
155
- "errors": [
156
- {
157
- "shape": "DependencyException"
158
- },
159
- {
160
- "shape": "InvalidParameterException"
161
- },
162
- {
163
- "shape": "ResourceNotFoundException"
164
- }
165
- ],
166
- "idempotent": true
167
- },
168
- "DeleteMissionProfile": {
169
- "name": "DeleteMissionProfile",
170
- "http": {
171
- "method": "DELETE",
172
- "requestUri": "/missionprofile/{missionProfileId}",
173
- "responseCode": 200
174
- },
175
- "input": {
176
- "shape": "DeleteMissionProfileRequest"
177
- },
178
- "output": {
179
- "shape": "MissionProfileIdResponse"
180
- },
181
- "errors": [
182
- {
183
- "shape": "DependencyException"
184
- },
185
- {
186
- "shape": "InvalidParameterException"
187
- },
188
- {
189
- "shape": "ResourceNotFoundException"
190
- }
191
- ],
192
- "idempotent": true
193
- },
194
- "DescribeContact": {
195
- "name": "DescribeContact",
196
- "http": {
197
- "method": "GET",
198
- "requestUri": "/contact/{contactId}",
199
- "responseCode": 200
200
- },
201
- "input": {
202
- "shape": "DescribeContactRequest"
203
- },
204
- "output": {
205
- "shape": "DescribeContactResponse"
206
- },
207
- "errors": [
208
- {
209
- "shape": "DependencyException"
210
- },
211
- {
212
- "shape": "InvalidParameterException"
213
- },
214
- {
215
- "shape": "ResourceNotFoundException"
216
- }
217
- ]
218
- },
219
- "GetConfig": {
220
- "name": "GetConfig",
221
- "http": {
222
- "method": "GET",
223
- "requestUri": "/config/{configType}/{configId}",
224
- "responseCode": 200
225
- },
226
- "input": {
227
- "shape": "GetConfigRequest"
228
- },
229
- "output": {
230
- "shape": "GetConfigResponse"
231
- },
232
- "errors": [
233
- {
234
- "shape": "DependencyException"
235
- },
236
- {
237
- "shape": "InvalidParameterException"
238
- },
239
- {
240
- "shape": "ResourceNotFoundException"
241
- }
242
- ]
243
- },
244
- "GetDataflowEndpointGroup": {
245
- "name": "GetDataflowEndpointGroup",
246
- "http": {
247
- "method": "GET",
248
- "requestUri": "/dataflowEndpointGroup/{dataflowEndpointGroupId}",
249
- "responseCode": 200
250
- },
251
- "input": {
252
- "shape": "GetDataflowEndpointGroupRequest"
253
- },
254
- "output": {
255
- "shape": "GetDataflowEndpointGroupResponse"
256
- },
257
- "errors": [
258
- {
259
- "shape": "DependencyException"
260
- },
261
- {
262
- "shape": "InvalidParameterException"
263
- },
264
- {
265
- "shape": "ResourceNotFoundException"
266
- }
267
- ]
268
- },
269
- "GetMissionProfile": {
270
- "name": "GetMissionProfile",
271
- "http": {
272
- "method": "GET",
273
- "requestUri": "/missionprofile/{missionProfileId}",
274
- "responseCode": 200
275
- },
276
- "input": {
277
- "shape": "GetMissionProfileRequest"
278
- },
279
- "output": {
280
- "shape": "GetMissionProfileResponse"
281
- },
282
- "errors": [
283
- {
284
- "shape": "DependencyException"
285
- },
286
- {
287
- "shape": "InvalidParameterException"
288
- },
289
- {
290
- "shape": "ResourceNotFoundException"
291
- }
292
- ]
293
- },
294
- "ListConfigs": {
295
- "name": "ListConfigs",
296
- "http": {
297
- "method": "GET",
298
- "requestUri": "/config",
299
- "responseCode": 200
300
- },
301
- "input": {
302
- "shape": "ListConfigsRequest"
303
- },
304
- "output": {
305
- "shape": "ListConfigsResponse"
306
- },
307
- "errors": [
308
- {
309
- "shape": "DependencyException"
310
- },
311
- {
312
- "shape": "InvalidParameterException"
313
- },
314
- {
315
- "shape": "ResourceNotFoundException"
316
- }
317
- ]
318
- },
319
- "ListContacts": {
320
- "name": "ListContacts",
321
- "http": {
322
- "method": "POST",
323
- "requestUri": "/contacts",
324
- "responseCode": 200
325
- },
326
- "input": {
327
- "shape": "ListContactsRequest"
328
- },
329
- "output": {
330
- "shape": "ListContactsResponse"
331
- },
332
- "errors": [
333
- {
334
- "shape": "DependencyException"
335
- },
336
- {
337
- "shape": "InvalidParameterException"
338
- },
339
- {
340
- "shape": "ResourceNotFoundException"
341
- }
342
- ]
343
- },
344
- "ListDataflowEndpointGroups": {
345
- "name": "ListDataflowEndpointGroups",
346
- "http": {
347
- "method": "GET",
348
- "requestUri": "/dataflowEndpointGroup",
349
- "responseCode": 200
350
- },
351
- "input": {
352
- "shape": "ListDataflowEndpointGroupsRequest"
353
- },
354
- "output": {
355
- "shape": "ListDataflowEndpointGroupsResponse"
356
- },
357
- "errors": [
358
- {
359
- "shape": "DependencyException"
360
- },
361
- {
362
- "shape": "InvalidParameterException"
363
- },
364
- {
365
- "shape": "ResourceNotFoundException"
366
- }
367
- ]
368
- },
369
- "ListMissionProfiles": {
370
- "name": "ListMissionProfiles",
371
- "http": {
372
- "method": "GET",
373
- "requestUri": "/missionprofile",
374
- "responseCode": 200
375
- },
376
- "input": {
377
- "shape": "ListMissionProfilesRequest"
378
- },
379
- "output": {
380
- "shape": "ListMissionProfilesResponse"
381
- },
382
- "errors": [
383
- {
384
- "shape": "DependencyException"
385
- },
386
- {
387
- "shape": "InvalidParameterException"
388
- },
389
- {
390
- "shape": "ResourceNotFoundException"
391
- }
392
- ]
393
- },
394
- "ReserveContact": {
395
- "name": "ReserveContact",
396
- "http": {
397
- "method": "POST",
398
- "requestUri": "/contact",
399
- "responseCode": 200
400
- },
401
- "input": {
402
- "shape": "ReserveContactRequest"
403
- },
404
- "output": {
405
- "shape": "ContactIdResponse"
406
- },
407
- "errors": [
408
- {
409
- "shape": "DependencyException"
410
- },
411
- {
412
- "shape": "InvalidParameterException"
413
- },
414
- {
415
- "shape": "ResourceNotFoundException"
416
- }
417
- ]
418
- },
419
- "UpdateConfig": {
420
- "name": "UpdateConfig",
421
- "http": {
422
- "method": "PUT",
423
- "requestUri": "/config/{configType}/{configId}",
424
- "responseCode": 200
425
- },
426
- "input": {
427
- "shape": "UpdateConfigRequest"
428
- },
429
- "output": {
430
- "shape": "ConfigIdResponse"
431
- },
432
- "errors": [
433
- {
434
- "shape": "DependencyException"
435
- },
436
- {
437
- "shape": "InvalidParameterException"
438
- },
439
- {
440
- "shape": "ResourceNotFoundException"
441
- }
442
- ],
443
- "idempotent": true
444
- },
445
- "UpdateMissionProfile": {
446
- "name": "UpdateMissionProfile",
447
- "http": {
448
- "method": "PUT",
449
- "requestUri": "/missionprofile/{missionProfileId}",
450
- "responseCode": 200
451
- },
452
- "input": {
453
- "shape": "UpdateMissionProfileRequest"
454
- },
455
- "output": {
456
- "shape": "MissionProfileIdResponse"
457
- },
458
- "errors": [
459
- {
460
- "shape": "DependencyException"
461
- },
462
- {
463
- "shape": "InvalidParameterException"
464
- },
465
- {
466
- "shape": "ResourceNotFoundException"
467
- }
468
- ],
469
- "idempotent": true
470
- },
471
- "GetMinuteUsage": {
472
- "name": "GetMinuteUsage",
473
- "http": {
474
- "method": "POST",
475
- "requestUri": "/minute-usage",
476
- "responseCode": 200
477
- },
478
- "input": {
479
- "shape": "GetMinuteUsageRequest"
480
- },
481
- "output": {
482
- "shape": "GetMinuteUsageResponse"
483
- },
484
- "errors": [
485
- {
486
- "shape": "DependencyException"
487
- },
488
- {
489
- "shape": "InvalidParameterException"
490
- },
491
- {
492
- "shape": "ResourceNotFoundException"
493
- }
494
- ]
495
- },
496
- "GetSatellite": {
497
- "name": "GetSatellite",
498
- "http": {
499
- "method": "GET",
500
- "requestUri": "/satellite/{satelliteId}",
501
- "responseCode": 200
502
- },
503
- "input": {
504
- "shape": "GetSatelliteRequest"
505
- },
506
- "output": {
507
- "shape": "GetSatelliteResponse"
508
- },
509
- "errors": [
510
- {
511
- "shape": "DependencyException"
512
- },
513
- {
514
- "shape": "InvalidParameterException"
515
- },
516
- {
517
- "shape": "ResourceNotFoundException"
518
- }
519
- ]
520
- },
521
- "ListGroundStations": {
522
- "name": "ListGroundStations",
523
- "http": {
524
- "method": "GET",
525
- "requestUri": "/groundstation",
526
- "responseCode": 200
527
- },
528
- "input": {
529
- "shape": "ListGroundStationsRequest"
530
- },
531
- "output": {
532
- "shape": "ListGroundStationsResponse"
533
- },
534
- "errors": [
535
- {
536
- "shape": "DependencyException"
537
- },
538
- {
539
- "shape": "InvalidParameterException"
540
- },
541
- {
542
- "shape": "ResourceNotFoundException"
543
- }
544
- ]
545
- },
546
- "ListSatellites": {
547
- "name": "ListSatellites",
548
- "http": {
549
- "method": "GET",
550
- "requestUri": "/satellite",
551
- "responseCode": 200
552
- },
553
- "input": {
554
- "shape": "ListSatellitesRequest"
555
- },
556
- "output": {
557
- "shape": "ListSatellitesResponse"
558
- },
559
- "errors": [
560
- {
561
- "shape": "DependencyException"
562
- },
563
- {
564
- "shape": "InvalidParameterException"
565
- },
566
- {
567
- "shape": "ResourceNotFoundException"
568
- }
569
- ]
570
- },
571
- "ListTagsForResource": {
572
- "name": "ListTagsForResource",
573
- "http": {
574
- "method": "GET",
575
- "requestUri": "/tags/{resourceArn}",
576
- "responseCode": 200
577
- },
578
- "input": {
579
- "shape": "ListTagsForResourceRequest"
580
- },
581
- "output": {
582
- "shape": "ListTagsForResourceResponse"
583
- },
584
- "errors": [
585
- {
586
- "shape": "DependencyException"
587
- },
588
- {
589
- "shape": "InvalidParameterException"
590
- },
591
- {
592
- "shape": "ResourceNotFoundException"
593
- }
594
- ]
595
- },
596
- "TagResource": {
597
- "name": "TagResource",
598
- "http": {
599
- "method": "POST",
600
- "requestUri": "/tags/{resourceArn}",
601
- "responseCode": 200
602
- },
603
- "input": {
604
- "shape": "TagResourceRequest"
605
- },
606
- "output": {
607
- "shape": "TagResourceResponse"
608
- },
609
- "errors": [
610
- {
611
- "shape": "DependencyException"
612
- },
613
- {
614
- "shape": "InvalidParameterException"
615
- },
616
- {
617
- "shape": "ResourceNotFoundException"
618
- }
619
- ]
620
- },
621
- "UntagResource": {
622
- "name": "UntagResource",
623
- "http": {
624
- "method": "DELETE",
625
- "requestUri": "/tags/{resourceArn}",
626
- "responseCode": 200
627
- },
628
- "input": {
629
- "shape": "UntagResourceRequest"
630
- },
631
- "output": {
632
- "shape": "UntagResourceResponse"
633
- },
634
- "errors": [
635
- {
636
- "shape": "DependencyException"
637
- },
638
- {
639
- "shape": "InvalidParameterException"
640
- },
641
- {
642
- "shape": "ResourceNotFoundException"
643
- }
644
- ],
645
- "idempotent": true
646
- }
647
- },
648
- "shapes": {
649
- "UpdateConfigRequest": {
650
- "type": "structure",
651
- "required": [
652
- "configData",
653
- "configId",
654
- "configType",
655
- "name"
656
- ],
657
- "members": {
658
- "configData": {
659
- "shape": "ConfigTypeData"
660
- },
661
- "configId": {
662
- "shape": "String",
663
- "location": "uri",
664
- "locationName": "configId"
665
- },
666
- "configType": {
667
- "shape": "ConfigCapabilityType",
668
- "location": "uri",
669
- "locationName": "configType"
670
- },
671
- "name": {
672
- "shape": "SafeName"
673
- }
674
- }
675
- },
676
- "ConfigTypeData": {
677
- "type": "structure",
678
- "members": {
679
- "antennaDownlinkConfig": {
680
- "shape": "AntennaDownlinkConfig"
681
- },
682
- "antennaDownlinkDemodDecodeConfig": {
683
- "shape": "AntennaDownlinkDemodDecodeConfig"
684
- },
685
- "antennaUplinkConfig": {
686
- "shape": "AntennaUplinkConfig"
687
- },
688
- "dataflowEndpointConfig": {
689
- "shape": "DataflowEndpointConfig"
690
- },
691
- "trackingConfig": {
692
- "shape": "TrackingConfig"
693
- },
694
- "uplinkEchoConfig": {
695
- "shape": "UplinkEchoConfig"
696
- }
697
- }
698
- },
699
- "noradSatelliteID": {
700
- "type": "integer",
701
- "min": 1,
702
- "max": 99999
703
- },
704
- "GroundStationData": {
705
- "type": "structure",
706
- "members": {
707
- "groundStationId": {
708
- "shape": "String"
709
- },
710
- "groundStationName": {
711
- "shape": "String"
712
- },
713
- "region": {
714
- "shape": "String"
715
- }
716
- }
717
- },
718
- "GetConfigRequest": {
719
- "type": "structure",
720
- "required": [
721
- "configId",
722
- "configType"
723
- ],
724
- "members": {
725
- "configId": {
726
- "shape": "String",
727
- "location": "uri",
728
- "locationName": "configId"
729
- },
730
- "configType": {
731
- "shape": "ConfigCapabilityType",
732
- "location": "uri",
733
- "locationName": "configType"
734
- }
735
- }
736
- },
737
- "GroundStationList": {
738
- "type": "list",
739
- "member": {
740
- "shape": "GroundStationData"
741
- }
742
- },
743
- "SecurityGroupIdList": {
744
- "type": "list",
745
- "member": {
746
- "shape": "String"
747
- }
748
- },
749
- "EndpointDetails": {
750
- "type": "structure",
751
- "members": {
752
- "endpoint": {
753
- "shape": "DataflowEndpoint"
754
- },
755
- "securityDetails": {
756
- "shape": "SecurityDetails"
757
- }
758
- }
759
- },
760
- "DataflowEndpointGroupArn": {
761
- "type": "string"
762
- },
763
- "GetMinuteUsageResponse": {
764
- "type": "structure",
765
- "members": {
766
- "estimatedMinutesRemaining": {
767
- "shape": "Integer"
768
- },
769
- "isReservedMinutesCustomer": {
770
- "shape": "Boolean"
771
- },
772
- "totalReservedMinuteAllocation": {
773
- "shape": "Integer"
774
- },
775
- "totalScheduledMinutes": {
776
- "shape": "Integer"
777
- },
778
- "upcomingMinutesScheduled": {
779
- "shape": "Integer"
780
- }
781
- }
782
- },
783
- "MissionProfileListItem": {
784
- "type": "structure",
785
- "members": {
786
- "missionProfileArn": {
787
- "shape": "MissionProfileArn"
788
- },
789
- "missionProfileId": {
790
- "shape": "String"
791
- },
792
- "name": {
793
- "shape": "String"
794
- },
795
- "region": {
796
- "shape": "String"
797
- }
798
- }
799
- },
800
- "SatelliteList": {
801
- "type": "list",
802
- "member": {
803
- "shape": "SatelliteListItem"
804
- }
805
- },
806
- "ListDataflowEndpointGroupsResponse": {
807
- "type": "structure",
808
- "members": {
809
- "dataflowEndpointGroupList": {
810
- "shape": "DataflowEndpointGroupList"
811
- },
812
- "nextToken": {
813
- "shape": "String"
814
- }
815
- }
816
- },
817
- "AntennaDownlinkDemodDecodeConfig": {
818
- "type": "structure",
819
- "required": [
820
- "decodeConfig",
821
- "demodulationConfig",
822
- "spectrumConfig"
823
- ],
824
- "members": {
825
- "decodeConfig": {
826
- "shape": "DecodeConfig"
827
- },
828
- "demodulationConfig": {
829
- "shape": "DemodulationConfig"
830
- },
831
- "spectrumConfig": {
832
- "shape": "SpectrumConfig"
833
- }
834
- }
835
- },
836
- "MissionProfileIdResponse": {
837
- "type": "structure",
838
- "members": {
839
- "missionProfileId": {
840
- "shape": "String"
841
- }
842
- }
843
- },
844
- "SubnetList": {
845
- "type": "list",
846
- "member": {
847
- "shape": "String"
848
- }
849
- },
850
- "Polarization": {
851
- "type": "string",
852
- "enum": [
853
- "LEFT_HAND",
854
- "NONE",
855
- "RIGHT_HAND"
856
- ]
857
- },
858
- "ConfigList": {
859
- "type": "list",
860
- "member": {
861
- "shape": "ConfigListItem"
862
- }
863
- },
864
- "AntennaUplinkConfig": {
865
- "type": "structure",
866
- "required": [
867
- "spectrumConfig",
868
- "targetEirp"
869
- ],
870
- "members": {
871
- "spectrumConfig": {
872
- "shape": "UplinkSpectrumConfig"
873
- },
874
- "targetEirp": {
875
- "shape": "Eirp"
876
- }
877
- }
878
- },
879
- "Integer": {
880
- "type": "integer",
881
- "box": true
882
- },
883
- "AntennaDownlinkConfig": {
884
- "type": "structure",
885
- "required": [
886
- "spectrumConfig"
887
- ],
888
- "members": {
889
- "spectrumConfig": {
890
- "shape": "SpectrumConfig"
891
- }
892
- }
893
- },
894
- "Boolean": {
895
- "type": "boolean",
896
- "box": true
897
- },
898
- "EndpointStatus": {
899
- "type": "string",
900
- "enum": [
901
- "created",
902
- "creating",
903
- "deleted",
904
- "deleting",
905
- "failed"
906
- ]
907
- },
908
- "UplinkEchoConfig": {
909
- "type": "structure",
910
- "required": [
911
- "antennaUplinkConfigArn",
912
- "enabled"
913
- ],
914
- "members": {
915
- "antennaUplinkConfigArn": {
916
- "shape": "ConfigArn"
917
- },
918
- "enabled": {
919
- "shape": "Boolean"
920
- }
921
- }
922
- },
923
- "DecodeConfig": {
924
- "type": "structure",
925
- "required": [
926
- "unvalidatedJSON"
927
- ],
928
- "members": {
929
- "unvalidatedJSON": {
930
- "shape": "JsonString"
931
- }
932
- }
933
- },
934
- "DeleteDataflowEndpointGroupRequest": {
935
- "type": "structure",
936
- "required": [
937
- "dataflowEndpointGroupId"
938
- ],
939
- "members": {
940
- "dataflowEndpointGroupId": {
941
- "shape": "String",
942
- "location": "uri",
943
- "locationName": "dataflowEndpointGroupId"
944
- }
945
- }
946
- },
947
- "ContactStatus": {
948
- "type": "string",
949
- "enum": [
950
- "AVAILABLE",
951
- "AWS_CANCELLED",
952
- "CANCELLED",
953
- "COMPLETED",
954
- "FAILED",
955
- "FAILED_TO_SCHEDULE",
956
- "PASS",
957
- "POSTPASS",
958
- "PREPASS",
959
- "SCHEDULED",
960
- "SCHEDULING"
961
- ]
962
- },
963
- "MissionProfileList": {
964
- "type": "list",
965
- "member": {
966
- "shape": "MissionProfileListItem"
967
- }
968
- },
969
- "CreateConfigRequest": {
970
- "type": "structure",
971
- "required": [
972
- "configData",
973
- "name"
974
- ],
975
- "members": {
976
- "configData": {
977
- "shape": "ConfigTypeData"
978
- },
979
- "name": {
980
- "shape": "SafeName"
981
- },
982
- "tags": {
983
- "shape": "TagsMap"
984
- }
985
- }
986
- },
987
- "Frequency": {
988
- "type": "structure",
989
- "required": [
990
- "units",
991
- "value"
992
- ],
993
- "members": {
994
- "units": {
995
- "shape": "FrequencyUnits"
996
- },
997
- "value": {
998
- "shape": "Double"
999
- }
1000
- }
1001
- },
1002
- "UntagResourceResponse": {
1003
- "type": "structure",
1004
- "members": { }
1005
- },
1006
- "ConfigIdResponse": {
1007
- "type": "structure",
1008
- "members": {
1009
- "configArn": {
1010
- "shape": "ConfigArn"
1011
- },
1012
- "configId": {
1013
- "shape": "String"
1014
- },
1015
- "configType": {
1016
- "shape": "ConfigCapabilityType"
1017
- }
1018
- }
1019
- },
1020
- "SecurityDetails": {
1021
- "type": "structure",
1022
- "required": [
1023
- "roleArn",
1024
- "securityGroupIds",
1025
- "subnetIds"
1026
- ],
1027
- "members": {
1028
- "roleArn": {
1029
- "shape": "RoleArn"
1030
- },
1031
- "securityGroupIds": {
1032
- "shape": "SecurityGroupIdList"
1033
- },
1034
- "subnetIds": {
1035
- "shape": "SubnetList"
1036
- }
1037
- }
1038
- },
1039
- "TrackingConfig": {
1040
- "type": "structure",
1041
- "required": [
1042
- "autotrack"
1043
- ],
1044
- "members": {
1045
- "autotrack": {
1046
- "shape": "Criticality"
1047
- }
1048
- }
1049
- },
1050
- "CreateDataflowEndpointGroupRequest": {
1051
- "type": "structure",
1052
- "required": [
1053
- "endpointDetails"
1054
- ],
1055
- "members": {
1056
- "endpointDetails": {
1057
- "shape": "EndpointDetailsList"
1058
- },
1059
- "tags": {
1060
- "shape": "TagsMap"
1061
- }
1062
- }
1063
- },
1064
- "Elevation": {
1065
- "type": "structure",
1066
- "required": [
1067
- "unit",
1068
- "value"
1069
- ],
1070
- "members": {
1071
- "unit": {
1072
- "shape": "AngleUnits"
1073
- },
1074
- "value": {
1075
- "shape": "Double"
1076
- }
1077
- }
1078
- },
1079
- "JsonString": {
1080
- "type": "string",
1081
- "min": 2,
1082
- "max": 8192
1083
- },
1084
- "GetSatelliteRequest": {
1085
- "type": "structure",
1086
- "required": [
1087
- "satelliteId"
1088
- ],
1089
- "members": {
1090
- "satelliteId": {
1091
- "shape": "String",
1092
- "location": "uri",
1093
- "locationName": "satelliteId"
1094
- }
1095
- }
1096
- },
1097
- "CancelContactRequest": {
1098
- "type": "structure",
1099
- "required": [
1100
- "contactId"
1101
- ],
1102
- "members": {
1103
- "contactId": {
1104
- "shape": "String",
1105
- "location": "uri",
1106
- "locationName": "contactId"
1107
- }
1108
- }
1109
- },
1110
- "UplinkSpectrumConfig": {
1111
- "type": "structure",
1112
- "required": [
1113
- "centerFrequency"
1114
- ],
1115
- "members": {
1116
- "centerFrequency": {
1117
- "shape": "Frequency"
1118
- },
1119
- "polarization": {
1120
- "shape": "Polarization"
1121
- }
1122
- }
1123
- },
1124
- "UntagResourceRequest": {
1125
- "type": "structure",
1126
- "required": [
1127
- "resourceArn",
1128
- "tagKeys"
1129
- ],
1130
- "members": {
1131
- "resourceArn": {
1132
- "shape": "String",
1133
- "location": "uri",
1134
- "locationName": "resourceArn"
1135
- },
1136
- "tagKeys": {
1137
- "shape": "TagKeys",
1138
- "location": "querystring",
1139
- "locationName": "tagKeys"
1140
- }
1141
- }
1142
- },
1143
- "satelliteArn": {
1144
- "type": "string"
1145
- },
1146
- "GetMissionProfileResponse": {
1147
- "type": "structure",
1148
- "members": {
1149
- "contactPostPassDurationSeconds": {
1150
- "shape": "DurationInSeconds"
1151
- },
1152
- "contactPrePassDurationSeconds": {
1153
- "shape": "DurationInSeconds"
1154
- },
1155
- "dataflowEdges": {
1156
- "shape": "DataflowEdgeList"
1157
- },
1158
- "minimumViableContactDurationSeconds": {
1159
- "shape": "DurationInSeconds"
1160
- },
1161
- "missionProfileArn": {
1162
- "shape": "MissionProfileArn"
1163
- },
1164
- "missionProfileId": {
1165
- "shape": "String"
1166
- },
1167
- "name": {
1168
- "shape": "String"
1169
- },
1170
- "region": {
1171
- "shape": "String"
1172
- },
1173
- "tags": {
1174
- "shape": "TagsMap"
1175
- },
1176
- "trackingConfigArn": {
1177
- "shape": "ConfigArn"
1178
- }
1179
- }
1180
- },
1181
- "ContactIdResponse": {
1182
- "type": "structure",
1183
- "members": {
1184
- "contactId": {
1185
- "shape": "String"
1186
- }
1187
- }
1188
- },
1189
- "EndpointDetailsList": {
1190
- "type": "list",
1191
- "member": {
1192
- "shape": "EndpointDetails"
1193
- }
1194
- },
1195
- "ListGroundStationsRequest": {
1196
- "type": "structure",
1197
- "members": {
1198
- "maxResults": {
1199
- "shape": "Integer",
1200
- "location": "querystring",
1201
- "locationName": "maxResults"
1202
- },
1203
- "nextToken": {
1204
- "shape": "String",
1205
- "location": "querystring",
1206
- "locationName": "nextToken"
1207
- }
1208
- }
1209
- },
1210
- "InvalidParameterException": {
1211
- "type": "structure",
1212
- "members": {
1213
- "message": {
1214
- "shape": "String"
1215
- },
1216
- "parameterName": {
1217
- "shape": "String"
1218
- }
1219
- },
1220
- "exception": true,
1221
- "error": {
1222
- "code": "InvalidParameterException",
1223
- "httpStatusCode": 431,
1224
- "senderFault": true
1225
- }
1226
- },
1227
- "DependencyException": {
1228
- "type": "structure",
1229
- "members": {
1230
- "message": {
1231
- "shape": "String"
1232
- },
1233
- "parameterName": {
1234
- "shape": "String"
1235
- }
1236
- },
1237
- "exception": true,
1238
- "error": {
1239
- "code": "DependencyException",
1240
- "httpStatusCode": 531,
1241
- "fault": true
1242
- }
1243
- },
1244
- "DescribeContactRequest": {
1245
- "type": "structure",
1246
- "required": [
1247
- "contactId"
1248
- ],
1249
- "members": {
1250
- "contactId": {
1251
- "shape": "String",
1252
- "location": "uri",
1253
- "locationName": "contactId"
1254
- }
1255
- }
1256
- },
1257
- "ResourceNotFoundException": {
1258
- "type": "structure",
1259
- "members": {
1260
- "message": {
1261
- "shape": "String"
1262
- }
1263
- },
1264
- "exception": true,
1265
- "error": {
1266
- "code": "ResourceNotFoundException",
1267
- "httpStatusCode": 434,
1268
- "senderFault": true
1269
- }
1270
- },
1271
- "Timestamp": {
1272
- "type": "timestamp"
1273
- },
1274
- "DeleteConfigRequest": {
1275
- "type": "structure",
1276
- "required": [
1277
- "configId",
1278
- "configType"
1279
- ],
1280
- "members": {
1281
- "configId": {
1282
- "shape": "String",
1283
- "location": "uri",
1284
- "locationName": "configId"
1285
- },
1286
- "configType": {
1287
- "shape": "ConfigCapabilityType",
1288
- "location": "uri",
1289
- "locationName": "configType"
1290
- }
1291
- }
1292
- },
1293
- "BandwidthUnits": {
1294
- "type": "string",
1295
- "enum": [
1296
- "GHz",
1297
- "MHz",
1298
- "kHz"
1299
- ]
1300
- },
1301
- "SpectrumConfig": {
1302
- "type": "structure",
1303
- "required": [
1304
- "bandwidth",
1305
- "centerFrequency"
1306
- ],
1307
- "members": {
1308
- "bandwidth": {
1309
- "shape": "FrequencyBandwidth"
1310
- },
1311
- "centerFrequency": {
1312
- "shape": "Frequency"
1313
- },
1314
- "polarization": {
1315
- "shape": "Polarization"
1316
- }
1317
- }
1318
- },
1319
- "DemodulationConfig": {
1320
- "type": "structure",
1321
- "required": [
1322
- "unvalidatedJSON"
1323
- ],
1324
- "members": {
1325
- "unvalidatedJSON": {
1326
- "shape": "JsonString"
1327
- }
1328
- }
1329
- },
1330
- "ListMissionProfilesResponse": {
1331
- "type": "structure",
1332
- "members": {
1333
- "missionProfileList": {
1334
- "shape": "MissionProfileList"
1335
- },
1336
- "nextToken": {
1337
- "shape": "String"
1338
- }
1339
- }
1340
- },
1341
- "ListConfigsResponse": {
1342
- "type": "structure",
1343
- "members": {
1344
- "configList": {
1345
- "shape": "ConfigList"
1346
- },
1347
- "nextToken": {
1348
- "shape": "String"
1349
- }
1350
- }
1351
- },
1352
- "DataflowEdge": {
1353
- "type": "list",
1354
- "member": {
1355
- "shape": "ConfigArn"
1356
- },
1357
- "min": 2,
1358
- "max": 2
1359
- },
1360
- "SafeName": {
1361
- "type": "string",
1362
- "min": 1,
1363
- "max": 256,
1364
- "pattern": "^[ a-zA-Z0-9_:-]+$"
1365
- },
1366
- "Eirp": {
1367
- "type": "structure",
1368
- "required": [
1369
- "units",
1370
- "value"
1371
- ],
1372
- "members": {
1373
- "units": {
1374
- "shape": "EirpUnits"
1375
- },
1376
- "value": {
1377
- "shape": "Double"
1378
- }
1379
- }
1380
- },
1381
- "RoleArn": {
1382
- "type": "string"
1383
- },
1384
- "ListMissionProfilesRequest": {
1385
- "type": "structure",
1386
- "members": {
1387
- "maxResults": {
1388
- "shape": "Integer",
1389
- "location": "querystring",
1390
- "locationName": "maxResults"
1391
- },
1392
- "nextToken": {
1393
- "shape": "String",
1394
- "location": "querystring",
1395
- "locationName": "nextToken"
1396
- }
1397
- }
1398
- },
1399
- "GetSatelliteResponse": {
1400
- "type": "structure",
1401
- "members": {
1402
- "dateCreated": {
1403
- "shape": "Timestamp"
1404
- },
1405
- "lastUpdated": {
1406
- "shape": "Timestamp"
1407
- },
1408
- "noradSatelliteID": {
1409
- "shape": "noradSatelliteID"
1410
- },
1411
- "satelliteArn": {
1412
- "shape": "satelliteArn"
1413
- },
1414
- "satelliteId": {
1415
- "shape": "Uuid"
1416
- },
1417
- "tags": {
1418
- "shape": "TagsMap"
1419
- }
1420
- }
1421
- },
1422
- "StatusList": {
1423
- "type": "list",
1424
- "member": {
1425
- "shape": "ContactStatus"
1426
- }
1427
- },
1428
- "ListContactsRequest": {
1429
- "type": "structure",
1430
- "required": [
1431
- "endTime",
1432
- "startTime",
1433
- "statusList"
1434
- ],
1435
- "members": {
1436
- "endTime": {
1437
- "shape": "Timestamp"
1438
- },
1439
- "groundStation": {
1440
- "shape": "String"
1441
- },
1442
- "maxResults": {
1443
- "shape": "Integer"
1444
- },
1445
- "missionProfileArn": {
1446
- "shape": "MissionProfileArn"
1447
- },
1448
- "nextToken": {
1449
- "shape": "String"
1450
- },
1451
- "satelliteArn": {
1452
- "shape": "satelliteArn"
1453
- },
1454
- "startTime": {
1455
- "shape": "Timestamp"
1456
- },
1457
- "statusList": {
1458
- "shape": "StatusList"
1459
- }
1460
- }
1461
- },
1462
- "ContactData": {
1463
- "type": "structure",
1464
- "members": {
1465
- "contactId": {
1466
- "shape": "String"
1467
- },
1468
- "contactStatus": {
1469
- "shape": "ContactStatus"
1470
- },
1471
- "endTime": {
1472
- "shape": "Timestamp"
1473
- },
1474
- "errorMessage": {
1475
- "shape": "String"
1476
- },
1477
- "groundStation": {
1478
- "shape": "String"
1479
- },
1480
- "maximumElevation": {
1481
- "shape": "Elevation"
1482
- },
1483
- "missionProfileArn": {
1484
- "shape": "MissionProfileArn"
1485
- },
1486
- "postPassEndTime": {
1487
- "shape": "Timestamp"
1488
- },
1489
- "prePassStartTime": {
1490
- "shape": "Timestamp"
1491
- },
1492
- "satelliteArn": {
1493
- "shape": "satelliteArn"
1494
- },
1495
- "startTime": {
1496
- "shape": "Timestamp"
1497
- },
1498
- "tags": {
1499
- "shape": "TagsMap"
1500
- }
1501
- }
1502
- },
1503
- "ListGroundStationsResponse": {
1504
- "type": "structure",
1505
- "members": {
1506
- "groundStationList": {
1507
- "shape": "GroundStationList"
1508
- },
1509
- "nextToken": {
1510
- "shape": "String"
1511
- }
1512
- }
1513
- },
1514
- "DataflowEndpoint": {
1515
- "type": "structure",
1516
- "members": {
1517
- "address": {
1518
- "shape": "SocketAddress"
1519
- },
1520
- "name": {
1521
- "shape": "SafeName"
1522
- },
1523
- "status": {
1524
- "shape": "EndpointStatus"
1525
- }
1526
- }
1527
- },
1528
- "ListConfigsRequest": {
1529
- "type": "structure",
1530
- "members": {
1531
- "maxResults": {
1532
- "shape": "Integer",
1533
- "location": "querystring",
1534
- "locationName": "maxResults"
1535
- },
1536
- "nextToken": {
1537
- "shape": "String",
1538
- "location": "querystring",
1539
- "locationName": "nextToken"
1540
- }
1541
- }
1542
- },
1543
- "SocketAddress": {
1544
- "type": "structure",
1545
- "required": [
1546
- "name",
1547
- "port"
1548
- ],
1549
- "members": {
1550
- "name": {
1551
- "shape": "String"
1552
- },
1553
- "port": {
1554
- "shape": "Integer"
1555
- }
1556
- }
1557
- },
1558
- "GetConfigResponse": {
1559
- "type": "structure",
1560
- "required": [
1561
- "configArn",
1562
- "configData",
1563
- "configId",
1564
- "name"
1565
- ],
1566
- "members": {
1567
- "configArn": {
1568
- "shape": "ConfigArn"
1569
- },
1570
- "configData": {
1571
- "shape": "ConfigTypeData"
1572
- },
1573
- "configId": {
1574
- "shape": "String"
1575
- },
1576
- "configType": {
1577
- "shape": "ConfigCapabilityType"
1578
- },
1579
- "name": {
1580
- "shape": "String"
1581
- },
1582
- "tags": {
1583
- "shape": "TagsMap"
1584
- }
1585
- }
1586
- },
1587
- "TagsMap": {
1588
- "type": "map",
1589
- "key": {
1590
- "shape": "String"
1591
- },
1592
- "value": {
1593
- "shape": "String"
1594
- }
1595
- },
1596
- "TagResourceResponse": {
1597
- "type": "structure",
1598
- "members": { }
1599
- },
1600
- "DeleteMissionProfileRequest": {
1601
- "type": "structure",
1602
- "required": [
1603
- "missionProfileId"
1604
- ],
1605
- "members": {
1606
- "missionProfileId": {
1607
- "shape": "String",
1608
- "location": "uri",
1609
- "locationName": "missionProfileId"
1610
- }
1611
- }
1612
- },
1613
- "DataflowEndpointGroupList": {
1614
- "type": "list",
1615
- "member": {
1616
- "shape": "DataflowEndpointListItem"
1617
- }
1618
- },
1619
- "ContactList": {
1620
- "type": "list",
1621
- "member": {
1622
- "shape": "ContactData"
1623
- }
1624
- },
1625
- "DurationInSeconds": {
1626
- "type": "integer",
1627
- "min": 1,
1628
- "max": 21600
1629
- },
1630
- "SatelliteListItem": {
1631
- "type": "structure",
1632
- "members": {
1633
- "noradSatelliteID": {
1634
- "shape": "noradSatelliteID"
1635
- },
1636
- "satelliteArn": {
1637
- "shape": "satelliteArn"
1638
- },
1639
- "satelliteId": {
1640
- "shape": "Uuid"
1641
- }
1642
- }
1643
- },
1644
- "GetMissionProfileRequest": {
1645
- "type": "structure",
1646
- "required": [
1647
- "missionProfileId"
1648
- ],
1649
- "members": {
1650
- "missionProfileId": {
1651
- "shape": "String",
1652
- "location": "uri",
1653
- "locationName": "missionProfileId"
1654
- }
1655
- }
1656
- },
1657
- "Double": {
1658
- "type": "double",
1659
- "box": true
1660
- },
1661
- "ListSatellitesResponse": {
1662
- "type": "structure",
1663
- "members": {
1664
- "nextToken": {
1665
- "shape": "String"
1666
- },
1667
- "satellites": {
1668
- "shape": "SatelliteList"
1669
- }
1670
- }
1671
- },
1672
- "CreateMissionProfileRequest": {
1673
- "type": "structure",
1674
- "required": [
1675
- "dataflowEdges",
1676
- "minimumViableContactDurationSeconds",
1677
- "name",
1678
- "trackingConfigArn"
1679
- ],
1680
- "members": {
1681
- "contactPostPassDurationSeconds": {
1682
- "shape": "DurationInSeconds"
1683
- },
1684
- "contactPrePassDurationSeconds": {
1685
- "shape": "DurationInSeconds"
1686
- },
1687
- "dataflowEdges": {
1688
- "shape": "DataflowEdgeList"
1689
- },
1690
- "minimumViableContactDurationSeconds": {
1691
- "shape": "DurationInSeconds"
1692
- },
1693
- "name": {
1694
- "shape": "SafeName"
1695
- },
1696
- "tags": {
1697
- "shape": "TagsMap"
1698
- },
1699
- "trackingConfigArn": {
1700
- "shape": "ConfigArn"
1701
- }
1702
- }
1703
- },
1704
- "ReserveContactRequest": {
1705
- "type": "structure",
1706
- "required": [
1707
- "endTime",
1708
- "groundStation",
1709
- "missionProfileArn",
1710
- "satelliteArn",
1711
- "startTime"
1712
- ],
1713
- "members": {
1714
- "endTime": {
1715
- "shape": "Timestamp"
1716
- },
1717
- "groundStation": {
1718
- "shape": "String"
1719
- },
1720
- "missionProfileArn": {
1721
- "shape": "MissionProfileArn"
1722
- },
1723
- "satelliteArn": {
1724
- "shape": "satelliteArn"
1725
- },
1726
- "startTime": {
1727
- "shape": "Timestamp"
1728
- },
1729
- "tags": {
1730
- "shape": "TagsMap"
1731
- }
1732
- }
1733
- },
1734
- "DataflowEndpointConfig": {
1735
- "type": "structure",
1736
- "required": [
1737
- "dataflowEndpointName"
1738
- ],
1739
- "members": {
1740
- "dataflowEndpointName": {
1741
- "shape": "String"
1742
- }
1743
- }
1744
- },
1745
- "Uuid": {
1746
- "type": "string",
1747
- "min": 1,
1748
- "max": 128,
1749
- "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}"
1750
- },
1751
- "ListTagsForResourceResponse": {
1752
- "type": "structure",
1753
- "members": {
1754
- "tags": {
1755
- "shape": "TagsMap"
1756
- }
1757
- }
1758
- },
1759
- "MissionProfileArn": {
1760
- "type": "string"
1761
- },
1762
- "ListContactsResponse": {
1763
- "type": "structure",
1764
- "members": {
1765
- "contactList": {
1766
- "shape": "ContactList"
1767
- },
1768
- "nextToken": {
1769
- "shape": "String"
1770
- }
1771
- }
1772
- },
1773
- "DataflowEdgeList": {
1774
- "type": "list",
1775
- "member": {
1776
- "shape": "DataflowEdge"
1777
- }
1778
- },
1779
- "DescribeContactResponse": {
1780
- "type": "structure",
1781
- "members": {
1782
- "contactId": {
1783
- "shape": "String"
1784
- },
1785
- "contactStatus": {
1786
- "shape": "ContactStatus"
1787
- },
1788
- "endTime": {
1789
- "shape": "Timestamp"
1790
- },
1791
- "errorMessage": {
1792
- "shape": "String"
1793
- },
1794
- "groundStation": {
1795
- "shape": "String"
1796
- },
1797
- "maximumElevation": {
1798
- "shape": "Elevation"
1799
- },
1800
- "missionProfileArn": {
1801
- "shape": "MissionProfileArn"
1802
- },
1803
- "postPassEndTime": {
1804
- "shape": "Timestamp"
1805
- },
1806
- "prePassStartTime": {
1807
- "shape": "Timestamp"
1808
- },
1809
- "satelliteArn": {
1810
- "shape": "satelliteArn"
1811
- },
1812
- "startTime": {
1813
- "shape": "Timestamp"
1814
- },
1815
- "tags": {
1816
- "shape": "TagsMap"
1817
- }
1818
- }
1819
- },
1820
- "ConfigListItem": {
1821
- "type": "structure",
1822
- "members": {
1823
- "configArn": {
1824
- "shape": "ConfigArn"
1825
- },
1826
- "configId": {
1827
- "shape": "String"
1828
- },
1829
- "configType": {
1830
- "shape": "ConfigCapabilityType"
1831
- },
1832
- "name": {
1833
- "shape": "String"
1834
- }
1835
- }
1836
- },
1837
- "ListTagsForResourceRequest": {
1838
- "type": "structure",
1839
- "required": [
1840
- "resourceArn"
1841
- ],
1842
- "members": {
1843
- "resourceArn": {
1844
- "shape": "String",
1845
- "location": "uri",
1846
- "locationName": "resourceArn"
1847
- }
1848
- }
1849
- },
1850
- "ListDataflowEndpointGroupsRequest": {
1851
- "type": "structure",
1852
- "members": {
1853
- "maxResults": {
1854
- "shape": "Integer",
1855
- "location": "querystring",
1856
- "locationName": "maxResults"
1857
- },
1858
- "nextToken": {
1859
- "shape": "String",
1860
- "location": "querystring",
1861
- "locationName": "nextToken"
1862
- }
1863
- }
1864
- },
1865
- "FrequencyBandwidth": {
1866
- "type": "structure",
1867
- "required": [
1868
- "units",
1869
- "value"
1870
- ],
1871
- "members": {
1872
- "units": {
1873
- "shape": "BandwidthUnits"
1874
- },
1875
- "value": {
1876
- "shape": "Double"
1877
- }
1878
- }
1879
- },
1880
- "String": {
1881
- "type": "string"
1882
- },
1883
- "ListSatellitesRequest": {
1884
- "type": "structure",
1885
- "members": {
1886
- "maxResults": {
1887
- "shape": "Integer",
1888
- "location": "querystring",
1889
- "locationName": "maxResults"
1890
- },
1891
- "nextToken": {
1892
- "shape": "String",
1893
- "location": "querystring",
1894
- "locationName": "nextToken"
1895
- }
1896
- }
1897
- },
1898
- "UpdateMissionProfileRequest": {
1899
- "type": "structure",
1900
- "required": [
1901
- "missionProfileId"
1902
- ],
1903
- "members": {
1904
- "contactPostPassDurationSeconds": {
1905
- "shape": "DurationInSeconds"
1906
- },
1907
- "contactPrePassDurationSeconds": {
1908
- "shape": "DurationInSeconds"
1909
- },
1910
- "dataflowEdges": {
1911
- "shape": "DataflowEdgeList"
1912
- },
1913
- "minimumViableContactDurationSeconds": {
1914
- "shape": "DurationInSeconds"
1915
- },
1916
- "missionProfileId": {
1917
- "shape": "String",
1918
- "location": "uri",
1919
- "locationName": "missionProfileId"
1920
- },
1921
- "name": {
1922
- "shape": "SafeName"
1923
- },
1924
- "trackingConfigArn": {
1925
- "shape": "ConfigArn"
1926
- }
1927
- }
1928
- },
1929
- "FrequencyUnits": {
1930
- "type": "string",
1931
- "enum": [
1932
- "GHz",
1933
- "MHz",
1934
- "kHz"
1935
- ]
1936
- },
1937
- "TagResourceRequest": {
1938
- "type": "structure",
1939
- "required": [
1940
- "resourceArn"
1941
- ],
1942
- "members": {
1943
- "resourceArn": {
1944
- "shape": "String",
1945
- "location": "uri",
1946
- "locationName": "resourceArn"
1947
- },
1948
- "tags": {
1949
- "shape": "TagsMap"
1950
- }
1951
- }
1952
- },
1953
- "Criticality": {
1954
- "type": "string",
1955
- "enum": [
1956
- "PREFERRED",
1957
- "REMOVED",
1958
- "REQUIRED"
1959
- ]
1960
- },
1961
- "ConfigCapabilityType": {
1962
- "type": "string",
1963
- "enum": [
1964
- "antenna-downlink",
1965
- "antenna-downlink-demod-decode",
1966
- "antenna-uplink",
1967
- "dataflow-endpoint",
1968
- "tracking",
1969
- "uplink-echo"
1970
- ]
1971
- },
1972
- "TagKeys": {
1973
- "type": "list",
1974
- "member": {
1975
- "shape": "String"
1976
- }
1977
- },
1978
- "AngleUnits": {
1979
- "type": "string",
1980
- "enum": [
1981
- "DEGREE_ANGLE",
1982
- "RADIAN"
1983
- ]
1984
- },
1985
- "DataflowEndpointListItem": {
1986
- "type": "structure",
1987
- "members": {
1988
- "dataflowEndpointGroupArn": {
1989
- "shape": "DataflowEndpointGroupArn"
1990
- },
1991
- "dataflowEndpointGroupId": {
1992
- "shape": "String"
1993
- }
1994
- }
1995
- },
1996
- "GetDataflowEndpointGroupResponse": {
1997
- "type": "structure",
1998
- "members": {
1999
- "dataflowEndpointGroupArn": {
2000
- "shape": "DataflowEndpointGroupArn"
2001
- },
2002
- "dataflowEndpointGroupId": {
2003
- "shape": "String"
2004
- },
2005
- "endpointsDetails": {
2006
- "shape": "EndpointDetailsList"
2007
- },
2008
- "tags": {
2009
- "shape": "TagsMap"
2010
- }
2011
- }
2012
- },
2013
- "GetDataflowEndpointGroupRequest": {
2014
- "type": "structure",
2015
- "required": [
2016
- "dataflowEndpointGroupId"
2017
- ],
2018
- "members": {
2019
- "dataflowEndpointGroupId": {
2020
- "shape": "String",
2021
- "location": "uri",
2022
- "locationName": "dataflowEndpointGroupId"
2023
- }
2024
- }
2025
- },
2026
- "ConfigArn": {
2027
- "type": "string"
2028
- },
2029
- "GetMinuteUsageRequest": {
2030
- "type": "structure",
2031
- "required": [
2032
- "month",
2033
- "year"
2034
- ],
2035
- "members": {
2036
- "month": {
2037
- "shape": "Integer"
2038
- },
2039
- "year": {
2040
- "shape": "Integer"
2041
- }
2042
- }
2043
- },
2044
- "DataflowEndpointGroupIdResponse": {
2045
- "type": "structure",
2046
- "members": {
2047
- "dataflowEndpointGroupId": {
2048
- "shape": "String"
2049
- }
2050
- }
2051
- },
2052
- "EirpUnits": {
2053
- "type": "string",
2054
- "enum": [
2055
- "dBW"
2056
- ]
2057
- }
2058
- }
2059
- }