aws-sdk-core 2.4.0 → 3.53.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (487) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3615 -3541
  4. data/lib/aws-sdk-core.rb +96 -408
  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 +41 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +73 -10
  16. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +22 -5
  18. data/lib/aws-sdk-core/ecs_credentials.rb +3 -3
  19. data/lib/aws-sdk-core/endpoint_cache.rb +188 -0
  20. data/lib/aws-sdk-core/errors.rb +174 -10
  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 +21 -12
  24. data/lib/aws-sdk-core/json.rb +4 -5
  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 +56 -21
  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 +256 -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 +160 -0
  42. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +63 -0
  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/helpful_socket_errors.rb +41 -0
  46. data/lib/aws-sdk-core/plugins/idempotency_token.rb +36 -0
  47. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  48. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +29 -0
  49. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  50. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  51. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  52. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  53. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  54. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  55. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  56. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +28 -16
  57. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  58. data/lib/aws-sdk-core/plugins/retry_errors.rb +97 -23
  59. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  60. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  61. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  62. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  63. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  64. data/lib/aws-sdk-core/process_credentials.rb +76 -0
  65. data/lib/aws-sdk-core/query.rb +5 -0
  66. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  67. data/lib/aws-sdk-core/query/handler.rb +20 -16
  68. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  69. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  70. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  71. data/lib/aws-sdk-core/rest.rb +10 -0
  72. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  73. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  74. data/lib/aws-sdk-core/rest/request/endpoint.rb +11 -66
  75. data/lib/aws-sdk-core/rest/request/headers.rb +20 -1
  76. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +103 -0
  77. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  78. data/lib/aws-sdk-core/rest/response/headers.rb +9 -0
  79. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  80. data/lib/aws-sdk-core/shared_config.rb +132 -18
  81. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  82. data/lib/aws-sdk-core/structure.rb +21 -11
  83. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  84. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  85. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  86. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  87. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +99 -1
  88. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  89. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  90. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  91. data/lib/aws-sdk-core/util.rb +66 -0
  92. data/lib/aws-sdk-core/waiters.rb +3 -0
  93. data/lib/aws-sdk-core/waiters/poller.rb +5 -7
  94. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  95. data/lib/aws-sdk-core/xml.rb +9 -0
  96. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  97. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  98. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  99. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +5 -1
  100. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  101. data/lib/aws-sdk-sts.rb +45 -0
  102. data/lib/aws-sdk-sts/client.rb +1761 -0
  103. data/lib/aws-sdk-sts/client_api.rb +304 -0
  104. data/lib/aws-sdk-sts/customizations.rb +0 -0
  105. data/lib/aws-sdk-sts/errors.rb +142 -0
  106. data/lib/aws-sdk-sts/resource.rb +23 -0
  107. data/lib/aws-sdk-sts/types.rb +1279 -0
  108. data/lib/seahorse.rb +60 -60
  109. data/lib/seahorse/client/async_base.rb +50 -0
  110. data/lib/seahorse/client/async_response.rb +62 -0
  111. data/lib/seahorse/client/base.rb +2 -8
  112. data/lib/seahorse/client/configuration.rb +9 -1
  113. data/lib/seahorse/client/h2/connection.rb +244 -0
  114. data/lib/seahorse/client/h2/handler.rb +151 -0
  115. data/lib/seahorse/client/http/async_response.rb +42 -0
  116. data/lib/seahorse/client/http/response.rb +10 -5
  117. data/lib/seahorse/client/logging/formatter.rb +5 -1
  118. data/lib/seahorse/client/logging/handler.rb +2 -0
  119. data/lib/seahorse/client/net_http/connection_pool.rb +27 -11
  120. data/lib/seahorse/client/net_http/handler.rb +10 -2
  121. data/lib/seahorse/client/net_http/patches.rb +9 -1
  122. data/lib/seahorse/client/networking_error.rb +28 -0
  123. data/lib/seahorse/client/plugin.rb +66 -6
  124. data/lib/seahorse/client/plugin_list.rb +3 -1
  125. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  126. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  127. data/lib/seahorse/client/plugins/h2.rb +64 -0
  128. data/lib/seahorse/client/plugins/logging.rb +17 -19
  129. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  130. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  131. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  132. data/lib/seahorse/client/request_context.rb +5 -0
  133. data/lib/seahorse/client/response.rb +9 -20
  134. data/lib/seahorse/model/api.rb +37 -0
  135. data/lib/seahorse/model/authorizer.rb +21 -0
  136. data/lib/seahorse/model/operation.rb +20 -0
  137. data/lib/seahorse/model/shapes.rb +44 -2
  138. data/lib/seahorse/util.rb +1 -21
  139. metadata +112 -359
  140. data/apis/acm/2015-12-08/api-2.json +0 -495
  141. data/apis/acm/2015-12-08/examples-1.json +0 -5
  142. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  143. data/apis/apigateway/2015-07-09/api-2.json +0 -3347
  144. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  145. data/apis/apigateway/2015-07-09/paginators-1.json +0 -52
  146. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -502
  147. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -5
  148. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  149. data/apis/autoscaling/2011-01-01/api-2.json +0 -2038
  150. data/apis/autoscaling/2011-01-01/examples-1.json +0 -5
  151. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  152. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1613
  153. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  154. data/apis/cloudformation/2010-05-15/api-2.json +0 -1299
  155. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  156. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  157. data/apis/cloudformation/2010-05-15/resources-1.json +0 -202
  158. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -235
  159. data/apis/cloudfront/2016-01-28/api-2.json +0 -2218
  160. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  161. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  162. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  163. data/apis/cloudhsm/2014-05-30/api-2.json +0 -877
  164. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  165. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2001
  166. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  167. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -373
  168. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  169. data/apis/cloudtrail/2013-11-01/api-2.json +0 -801
  170. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  171. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -7
  172. data/apis/codecommit/2015-04-13/api-2.json +0 -916
  173. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  174. data/apis/codecommit/2015-04-13/paginators-1.json +0 -14
  175. data/apis/codedeploy/2014-10-06/api-2.json +0 -1954
  176. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  177. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  178. data/apis/codepipeline/2015-07-09/api-2.json +0 -1633
  179. data/apis/codepipeline/2015-07-09/examples-1.json +0 -902
  180. data/apis/cognito-identity/2014-06-30/api-2.json +0 -859
  181. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  182. data/apis/cognito-idp/2016-04-18/api-2.json +0 -1657
  183. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  184. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1874
  185. data/apis/config/2014-11-12/api-2.json +0 -1303
  186. data/apis/config/2014-11-12/examples-1.json +0 -5
  187. data/apis/config/2014-11-12/paginators-1.json +0 -10
  188. data/apis/datapipeline/2012-10-29/api-2.json +0 -1167
  189. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  190. data/apis/devicefarm/2015-06-23/api-2.json +0 -2030
  191. data/apis/devicefarm/2015-06-23/examples-1.json +0 -5
  192. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  193. data/apis/directconnect/2012-10-25/api-2.json +0 -793
  194. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  195. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  196. data/apis/discovery/2015-11-01/api-2.json +0 -556
  197. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  198. data/apis/dms/2016-01-01/api-2.json +0 -1469
  199. data/apis/dms/2016-01-01/examples-1.json +0 -5
  200. data/apis/ds/2015-04-16/api-2.json +0 -1674
  201. data/apis/ds/2015-04-16/examples-1.json +0 -5
  202. data/apis/dynamodb/2012-08-10/api-2.json +0 -1200
  203. data/apis/dynamodb/2012-08-10/examples-1.json +0 -5
  204. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  205. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  206. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  207. data/apis/ec2/2015-10-01/api-2.json +0 -13759
  208. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  209. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  210. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  211. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  212. data/apis/ec2/2016-04-01/api-2.json +0 -13842
  213. data/apis/ec2/2016-04-01/examples-1.json +0 -5
  214. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  215. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  216. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  217. data/apis/ecr/2015-09-21/api-2.json +0 -849
  218. data/apis/ecr/2015-09-21/examples-1.json +0 -5
  219. data/apis/ecs/2014-11-13/api-2.json +0 -1396
  220. data/apis/ecs/2014-11-13/examples-1.json +0 -5
  221. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  222. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  223. data/apis/elasticache/2015-02-02/api-2.json +0 -2426
  224. data/apis/elasticache/2015-02-02/examples-1.json +0 -5
  225. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  226. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  227. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -1894
  228. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  229. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  230. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -713
  231. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -5
  232. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -2145
  233. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  234. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  235. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1341
  236. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  237. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  238. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  239. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1807
  240. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  241. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  242. data/apis/email/2010-12-01/api-2.json +0 -1791
  243. data/apis/email/2010-12-01/examples-1.json +0 -5
  244. data/apis/email/2010-12-01/paginators-1.json +0 -13
  245. data/apis/email/2010-12-01/waiters-2.json +0 -18
  246. data/apis/es/2015-01-01/api-2.json +0 -764
  247. data/apis/events/2015-10-07/api-2.json +0 -643
  248. data/apis/events/2015-10-07/examples-1.json +0 -5
  249. data/apis/firehose/2015-08-04/api-2.json +0 -719
  250. data/apis/gamelift/2015-10-01/api-2.json +0 -2307
  251. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  252. data/apis/glacier/2012-06-01/api-2.json +0 -2144
  253. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  254. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  255. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  256. data/apis/iam/2010-05-08/api-2.json +0 -4514
  257. data/apis/iam/2010-05-08/examples-1.json +0 -5
  258. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  259. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  260. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  261. data/apis/importexport/2010-06-01/api-2.json +0 -666
  262. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  263. data/apis/inspector/2016-02-16/api-2.json +0 -1964
  264. data/apis/inspector/2016-02-16/examples-1.json +0 -5
  265. data/apis/iot-data/2015-05-28/api-2.json +0 -263
  266. data/apis/iot/2015-05-28/api-2.json +0 -3800
  267. data/apis/iot/2015-05-28/examples-1.json +0 -5
  268. data/apis/kinesis/2013-12-02/api-2.json +0 -822
  269. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  270. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  271. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  272. data/apis/kms/2014-11-01/api-2.json +0 -1209
  273. data/apis/kms/2014-11-01/examples-1.json +0 -5
  274. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  275. data/apis/lambda/2014-11-11/api-2.json +0 -667
  276. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  277. data/apis/lambda/2015-03-31/api-2.json +0 -1342
  278. data/apis/lambda/2015-03-31/examples-1.json +0 -5
  279. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  280. data/apis/logs/2014-03-28/api-2.json +0 -1138
  281. data/apis/logs/2014-03-28/examples-1.json +0 -5
  282. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  283. data/apis/machinelearning/2014-12-12/api-2.json +0 -1947
  284. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  285. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  286. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -120
  287. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  288. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -127
  289. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  290. data/apis/monitoring/2010-08-01/api-2.json +0 -790
  291. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  292. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  293. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  294. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  295. data/apis/opsworks/2013-02-18/api-2.json +0 -2606
  296. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  297. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  298. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  299. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  300. data/apis/rds/2014-10-31/api-2.json +0 -4757
  301. data/apis/rds/2014-10-31/examples-1.json +0 -5
  302. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  303. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  304. data/apis/rds/2014-10-31/waiters-2.json +0 -102
  305. data/apis/redshift/2012-12-01/api-2.json +0 -3768
  306. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  307. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  308. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  309. data/apis/route53/2013-04-01/api-2.json +0 -3245
  310. data/apis/route53/2013-04-01/examples-1.json +0 -5
  311. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  312. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  313. data/apis/route53domains/2014-05-15/api-2.json +0 -1197
  314. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  315. data/apis/s3/2006-03-01/api-2.json +0 -4517
  316. data/apis/s3/2006-03-01/examples-1.json +0 -5
  317. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  318. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  319. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  320. data/apis/sdb/2009-04-15/api-2.json +0 -954
  321. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  322. data/apis/servicecatalog/2015-12-10/api-2.json +0 -749
  323. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  324. data/apis/sns/2010-03-31/api-2.json +0 -1139
  325. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  326. data/apis/sns/2010-03-31/resources-1.json +0 -327
  327. data/apis/sqs/2012-11-05/api-2.json +0 -950
  328. data/apis/sqs/2012-11-05/examples-1.json +0 -44
  329. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  330. data/apis/ssm/2014-11-06/api-2.json +0 -1796
  331. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  332. data/apis/ssm/2014-11-06/paginators-1.json +0 -34
  333. data/apis/storagegateway/2013-06-30/api-2.json +0 -2275
  334. data/apis/storagegateway/2013-06-30/examples-1.json +0 -5
  335. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  336. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -397
  337. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -5
  338. data/apis/sts/2011-06-15/api-2.json +0 -521
  339. data/apis/sts/2011-06-15/examples-1.json +0 -5
  340. data/apis/support/2013-04-15/api-2.json +0 -869
  341. data/apis/support/2013-04-15/paginators-1.json +0 -25
  342. data/apis/swf/2012-01-25/api-2.json +0 -2838
  343. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  344. data/apis/waf/2015-08-24/api-2.json +0 -1959
  345. data/apis/waf/2015-08-24/examples-1.json +0 -5
  346. data/apis/workspaces/2015-04-08/api-2.json +0 -632
  347. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  348. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  349. data/bin/aws.rb +0 -180
  350. data/endpoints.json +0 -1460
  351. data/lib/aws-sdk-core/acm.rb +0 -6
  352. data/lib/aws-sdk-core/api/builder.rb +0 -106
  353. data/lib/aws-sdk-core/api/customizations.rb +0 -217
  354. data/lib/aws-sdk-core/api/docs/builder.rb +0 -220
  355. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -109
  356. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  357. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -138
  358. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  359. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  360. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  361. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  362. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  363. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  364. data/lib/aws-sdk-core/apigateway.rb +0 -6
  365. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  366. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  367. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  368. data/lib/aws-sdk-core/checksums.rb +0 -51
  369. data/lib/aws-sdk-core/client.rb +0 -57
  370. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  371. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  372. data/lib/aws-sdk-core/cloudfront.rb +0 -15
  373. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -167
  374. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  375. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  376. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  377. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  378. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  379. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  380. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  381. data/lib/aws-sdk-core/codecommit.rb +0 -6
  382. data/lib/aws-sdk-core/codedeploy.rb +0 -6
  383. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  384. data/lib/aws-sdk-core/cognitoidentity.rb +0 -5
  385. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  386. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  387. data/lib/aws-sdk-core/configservice.rb +0 -6
  388. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  389. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  390. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  391. data/lib/aws-sdk-core/directconnect.rb +0 -6
  392. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  393. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  394. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  395. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -5
  396. data/lib/aws-sdk-core/ec2.rb +0 -8
  397. data/lib/aws-sdk-core/ecr.rb +0 -5
  398. data/lib/aws-sdk-core/ecs.rb +0 -7
  399. data/lib/aws-sdk-core/efs.rb +0 -5
  400. data/lib/aws-sdk-core/elasticache.rb +0 -7
  401. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  402. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -6
  403. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -4
  404. data/lib/aws-sdk-core/elastictranscoder.rb +0 -6
  405. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  406. data/lib/aws-sdk-core/emr.rb +0 -7
  407. data/lib/aws-sdk-core/endpoint_provider.rb +0 -95
  408. data/lib/aws-sdk-core/firehose.rb +0 -4
  409. data/lib/aws-sdk-core/gamelift.rb +0 -5
  410. data/lib/aws-sdk-core/glacier.rb +0 -7
  411. data/lib/aws-sdk-core/iam.rb +0 -8
  412. data/lib/aws-sdk-core/importexport.rb +0 -5
  413. data/lib/aws-sdk-core/inspector.rb +0 -5
  414. data/lib/aws-sdk-core/iot.rb +0 -5
  415. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  416. data/lib/aws-sdk-core/kinesis.rb +0 -7
  417. data/lib/aws-sdk-core/kms.rb +0 -6
  418. data/lib/aws-sdk-core/lambda.rb +0 -6
  419. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  420. data/lib/aws-sdk-core/machinelearning.rb +0 -6
  421. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  422. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  423. data/lib/aws-sdk-core/opsworks.rb +0 -8
  424. data/lib/aws-sdk-core/partitions.rb +0 -174
  425. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  426. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  427. data/lib/aws-sdk-core/partitions/region.rb +0 -78
  428. data/lib/aws-sdk-core/partitions/service.rb +0 -84
  429. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  430. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  431. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  432. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  433. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  434. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -87
  435. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  436. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  437. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  438. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  439. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  440. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -138
  441. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  442. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -73
  443. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  444. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  445. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  446. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  447. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  448. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  449. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  450. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  451. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  452. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  453. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  454. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  455. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  456. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  457. data/lib/aws-sdk-core/rds.rb +0 -8
  458. data/lib/aws-sdk-core/redshift.rb +0 -7
  459. data/lib/aws-sdk-core/route53.rb +0 -7
  460. data/lib/aws-sdk-core/route53domains.rb +0 -5
  461. data/lib/aws-sdk-core/s3.rb +0 -26
  462. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  463. data/lib/aws-sdk-core/s3/presigner.rb +0 -113
  464. data/lib/aws-sdk-core/service.rb +0 -4
  465. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  466. data/lib/aws-sdk-core/ses.rb +0 -7
  467. data/lib/aws-sdk-core/signers/base.rb +0 -31
  468. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  469. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  470. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  471. data/lib/aws-sdk-core/signers/v4.rb +0 -233
  472. data/lib/aws-sdk-core/simpledb.rb +0 -5
  473. data/lib/aws-sdk-core/sns.rb +0 -6
  474. data/lib/aws-sdk-core/sqs.rb +0 -6
  475. data/lib/aws-sdk-core/ssm.rb +0 -6
  476. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  477. data/lib/aws-sdk-core/sts.rb +0 -5
  478. data/lib/aws-sdk-core/support.rb +0 -5
  479. data/lib/aws-sdk-core/swf.rb +0 -5
  480. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  481. data/lib/aws-sdk-core/version.rb +0 -3
  482. data/lib/aws-sdk-core/waf.rb +0 -5
  483. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  484. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  485. data/lib/aws-sdk-core/workspaces.rb +0 -6
  486. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  487. data/service-models.json +0 -285
@@ -1,44 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- "CreateQueue": [
5
- {
6
- "input": {
7
- "QueueName": "MyQueue"
8
- },
9
- "output": {
10
- "QueueUrl": "https://queue.amazonaws.com/012345678910/MyQueue"
11
- },
12
- "comments": {
13
- "input": {
14
- },
15
- "output": {
16
- }
17
- },
18
- "description": "The following operation creates an SQS queue named MyQueue.",
19
- "id": "create-an-sqs-queue-1445915686197",
20
- "title": "Create an SQS queue"
21
- }
22
- ],
23
- "GetQueueUrl": [
24
- {
25
- "input": {
26
- "QueueName": "MyQueue",
27
- "QueueOwnerAWSAccountId": "12345678910"
28
- },
29
- "output": {
30
- "QueueUrl": "https://queue.amazonaws.com/12345678910/MyQueue"
31
- },
32
- "comments": {
33
- "input": {
34
- },
35
- "output": {
36
- }
37
- },
38
- "description": "The following example retrieves the queue ARN.",
39
- "id": "retrieve-queue-attributes-from-an-sqs-queue-1445915930574",
40
- "title": "Retrieve queue attributes from an SQS queue"
41
- }
42
- ]
43
- }
44
- }
@@ -1,7 +0,0 @@
1
- {
2
- "pagination": {
3
- "ListQueues": {
4
- "result_key": "QueueUrls"
5
- }
6
- }
7
- }
@@ -1,1796 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2014-11-06",
5
- "endpointPrefix":"ssm",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceAbbreviation":"Amazon SSM",
9
- "serviceFullName":"Amazon Simple Systems Management Service",
10
- "signatureVersion":"v4",
11
- "targetPrefix":"AmazonSSM"
12
- },
13
- "operations":{
14
- "AddTagsToResource":{
15
- "name":"AddTagsToResource",
16
- "http":{
17
- "method":"POST",
18
- "requestUri":"/"
19
- },
20
- "input":{"shape":"AddTagsToResourceRequest"},
21
- "output":{"shape":"AddTagsToResourceResult"},
22
- "errors":[
23
- {"shape":"InvalidResourceType"},
24
- {"shape":"InvalidResourceId"},
25
- {"shape":"InternalServerError"}
26
- ]
27
- },
28
- "CancelCommand":{
29
- "name":"CancelCommand",
30
- "http":{
31
- "method":"POST",
32
- "requestUri":"/"
33
- },
34
- "input":{"shape":"CancelCommandRequest"},
35
- "output":{"shape":"CancelCommandResult"},
36
- "errors":[
37
- {"shape":"InternalServerError"},
38
- {"shape":"InvalidCommandId"},
39
- {"shape":"InvalidInstanceId"},
40
- {"shape":"DuplicateInstanceId"}
41
- ]
42
- },
43
- "CreateActivation":{
44
- "name":"CreateActivation",
45
- "http":{
46
- "method":"POST",
47
- "requestUri":"/"
48
- },
49
- "input":{"shape":"CreateActivationRequest"},
50
- "output":{"shape":"CreateActivationResult"},
51
- "errors":[
52
- {"shape":"InternalServerError"}
53
- ]
54
- },
55
- "CreateAssociation":{
56
- "name":"CreateAssociation",
57
- "http":{
58
- "method":"POST",
59
- "requestUri":"/"
60
- },
61
- "input":{"shape":"CreateAssociationRequest"},
62
- "output":{"shape":"CreateAssociationResult"},
63
- "errors":[
64
- {"shape":"AssociationAlreadyExists"},
65
- {"shape":"AssociationLimitExceeded"},
66
- {"shape":"InternalServerError"},
67
- {"shape":"InvalidDocument"},
68
- {"shape":"InvalidInstanceId"},
69
- {"shape":"UnsupportedPlatformType"},
70
- {"shape":"InvalidParameters"}
71
- ]
72
- },
73
- "CreateAssociationBatch":{
74
- "name":"CreateAssociationBatch",
75
- "http":{
76
- "method":"POST",
77
- "requestUri":"/"
78
- },
79
- "input":{"shape":"CreateAssociationBatchRequest"},
80
- "output":{"shape":"CreateAssociationBatchResult"},
81
- "errors":[
82
- {"shape":"InternalServerError"},
83
- {"shape":"InvalidDocument"},
84
- {"shape":"InvalidInstanceId"},
85
- {"shape":"InvalidParameters"},
86
- {"shape":"DuplicateInstanceId"},
87
- {"shape":"AssociationLimitExceeded"},
88
- {"shape":"UnsupportedPlatformType"}
89
- ]
90
- },
91
- "CreateDocument":{
92
- "name":"CreateDocument",
93
- "http":{
94
- "method":"POST",
95
- "requestUri":"/"
96
- },
97
- "input":{"shape":"CreateDocumentRequest"},
98
- "output":{"shape":"CreateDocumentResult"},
99
- "errors":[
100
- {"shape":"DocumentAlreadyExists"},
101
- {"shape":"MaxDocumentSizeExceeded"},
102
- {"shape":"InternalServerError"},
103
- {"shape":"InvalidDocumentContent"},
104
- {"shape":"DocumentLimitExceeded"}
105
- ]
106
- },
107
- "DeleteActivation":{
108
- "name":"DeleteActivation",
109
- "http":{
110
- "method":"POST",
111
- "requestUri":"/"
112
- },
113
- "input":{"shape":"DeleteActivationRequest"},
114
- "output":{"shape":"DeleteActivationResult"},
115
- "errors":[
116
- {"shape":"InvalidActivationId"},
117
- {"shape":"InvalidActivation"},
118
- {"shape":"InternalServerError"}
119
- ]
120
- },
121
- "DeleteAssociation":{
122
- "name":"DeleteAssociation",
123
- "http":{
124
- "method":"POST",
125
- "requestUri":"/"
126
- },
127
- "input":{"shape":"DeleteAssociationRequest"},
128
- "output":{"shape":"DeleteAssociationResult"},
129
- "errors":[
130
- {"shape":"AssociationDoesNotExist"},
131
- {"shape":"InternalServerError"},
132
- {"shape":"InvalidDocument"},
133
- {"shape":"InvalidInstanceId"},
134
- {"shape":"TooManyUpdates"}
135
- ]
136
- },
137
- "DeleteDocument":{
138
- "name":"DeleteDocument",
139
- "http":{
140
- "method":"POST",
141
- "requestUri":"/"
142
- },
143
- "input":{"shape":"DeleteDocumentRequest"},
144
- "output":{"shape":"DeleteDocumentResult"},
145
- "errors":[
146
- {"shape":"InternalServerError"},
147
- {"shape":"InvalidDocument"},
148
- {"shape":"InvalidDocumentOperation"},
149
- {"shape":"AssociatedInstances"}
150
- ]
151
- },
152
- "DeregisterManagedInstance":{
153
- "name":"DeregisterManagedInstance",
154
- "http":{
155
- "method":"POST",
156
- "requestUri":"/"
157
- },
158
- "input":{"shape":"DeregisterManagedInstanceRequest"},
159
- "output":{"shape":"DeregisterManagedInstanceResult"},
160
- "errors":[
161
- {"shape":"InvalidInstanceId"},
162
- {"shape":"InternalServerError"}
163
- ]
164
- },
165
- "DescribeActivations":{
166
- "name":"DescribeActivations",
167
- "http":{
168
- "method":"POST",
169
- "requestUri":"/"
170
- },
171
- "input":{"shape":"DescribeActivationsRequest"},
172
- "output":{"shape":"DescribeActivationsResult"},
173
- "errors":[
174
- {"shape":"InvalidFilter"},
175
- {"shape":"InvalidNextToken"},
176
- {"shape":"InternalServerError"}
177
- ]
178
- },
179
- "DescribeAssociation":{
180
- "name":"DescribeAssociation",
181
- "http":{
182
- "method":"POST",
183
- "requestUri":"/"
184
- },
185
- "input":{"shape":"DescribeAssociationRequest"},
186
- "output":{"shape":"DescribeAssociationResult"},
187
- "errors":[
188
- {"shape":"AssociationDoesNotExist"},
189
- {"shape":"InternalServerError"},
190
- {"shape":"InvalidDocument"},
191
- {"shape":"InvalidInstanceId"}
192
- ]
193
- },
194
- "DescribeDocument":{
195
- "name":"DescribeDocument",
196
- "http":{
197
- "method":"POST",
198
- "requestUri":"/"
199
- },
200
- "input":{"shape":"DescribeDocumentRequest"},
201
- "output":{"shape":"DescribeDocumentResult"},
202
- "errors":[
203
- {"shape":"InternalServerError"},
204
- {"shape":"InvalidDocument"}
205
- ]
206
- },
207
- "DescribeDocumentPermission":{
208
- "name":"DescribeDocumentPermission",
209
- "http":{
210
- "method":"POST",
211
- "requestUri":"/"
212
- },
213
- "input":{"shape":"DescribeDocumentPermissionRequest"},
214
- "output":{"shape":"DescribeDocumentPermissionResponse"},
215
- "errors":[
216
- {"shape":"InternalServerError"},
217
- {"shape":"InvalidDocument"},
218
- {"shape":"InvalidPermissionType"}
219
- ]
220
- },
221
- "DescribeInstanceInformation":{
222
- "name":"DescribeInstanceInformation",
223
- "http":{
224
- "method":"POST",
225
- "requestUri":"/"
226
- },
227
- "input":{"shape":"DescribeInstanceInformationRequest"},
228
- "output":{"shape":"DescribeInstanceInformationResult"},
229
- "errors":[
230
- {"shape":"InternalServerError"},
231
- {"shape":"InvalidInstanceId"},
232
- {"shape":"InvalidNextToken"},
233
- {"shape":"InvalidInstanceInformationFilterValue"},
234
- {"shape":"InvalidFilterKey"}
235
- ]
236
- },
237
- "GetDocument":{
238
- "name":"GetDocument",
239
- "http":{
240
- "method":"POST",
241
- "requestUri":"/"
242
- },
243
- "input":{"shape":"GetDocumentRequest"},
244
- "output":{"shape":"GetDocumentResult"},
245
- "errors":[
246
- {"shape":"InternalServerError"},
247
- {"shape":"InvalidDocument"}
248
- ]
249
- },
250
- "ListAssociations":{
251
- "name":"ListAssociations",
252
- "http":{
253
- "method":"POST",
254
- "requestUri":"/"
255
- },
256
- "input":{"shape":"ListAssociationsRequest"},
257
- "output":{"shape":"ListAssociationsResult"},
258
- "errors":[
259
- {"shape":"InternalServerError"},
260
- {"shape":"InvalidNextToken"}
261
- ]
262
- },
263
- "ListCommandInvocations":{
264
- "name":"ListCommandInvocations",
265
- "http":{
266
- "method":"POST",
267
- "requestUri":"/"
268
- },
269
- "input":{"shape":"ListCommandInvocationsRequest"},
270
- "output":{"shape":"ListCommandInvocationsResult"},
271
- "errors":[
272
- {"shape":"InternalServerError"},
273
- {"shape":"InvalidCommandId"},
274
- {"shape":"InvalidInstanceId"},
275
- {"shape":"InvalidFilterKey"},
276
- {"shape":"InvalidNextToken"}
277
- ]
278
- },
279
- "ListCommands":{
280
- "name":"ListCommands",
281
- "http":{
282
- "method":"POST",
283
- "requestUri":"/"
284
- },
285
- "input":{"shape":"ListCommandsRequest"},
286
- "output":{"shape":"ListCommandsResult"},
287
- "errors":[
288
- {"shape":"InternalServerError"},
289
- {"shape":"InvalidCommandId"},
290
- {"shape":"InvalidInstanceId"},
291
- {"shape":"InvalidFilterKey"},
292
- {"shape":"InvalidNextToken"}
293
- ]
294
- },
295
- "ListDocuments":{
296
- "name":"ListDocuments",
297
- "http":{
298
- "method":"POST",
299
- "requestUri":"/"
300
- },
301
- "input":{"shape":"ListDocumentsRequest"},
302
- "output":{"shape":"ListDocumentsResult"},
303
- "errors":[
304
- {"shape":"InternalServerError"},
305
- {"shape":"InvalidNextToken"},
306
- {"shape":"InvalidFilterKey"}
307
- ]
308
- },
309
- "ListTagsForResource":{
310
- "name":"ListTagsForResource",
311
- "http":{
312
- "method":"POST",
313
- "requestUri":"/"
314
- },
315
- "input":{"shape":"ListTagsForResourceRequest"},
316
- "output":{"shape":"ListTagsForResourceResult"},
317
- "errors":[
318
- {"shape":"InvalidResourceType"},
319
- {"shape":"InvalidResourceId"},
320
- {"shape":"InternalServerError"}
321
- ]
322
- },
323
- "ModifyDocumentPermission":{
324
- "name":"ModifyDocumentPermission",
325
- "http":{
326
- "method":"POST",
327
- "requestUri":"/"
328
- },
329
- "input":{"shape":"ModifyDocumentPermissionRequest"},
330
- "output":{"shape":"ModifyDocumentPermissionResponse"},
331
- "errors":[
332
- {"shape":"InternalServerError"},
333
- {"shape":"InvalidDocument"},
334
- {"shape":"InvalidPermissionType"},
335
- {"shape":"DocumentPermissionLimit"},
336
- {"shape":"DocumentLimitExceeded"}
337
- ]
338
- },
339
- "RemoveTagsFromResource":{
340
- "name":"RemoveTagsFromResource",
341
- "http":{
342
- "method":"POST",
343
- "requestUri":"/"
344
- },
345
- "input":{"shape":"RemoveTagsFromResourceRequest"},
346
- "output":{"shape":"RemoveTagsFromResourceResult"},
347
- "errors":[
348
- {"shape":"InvalidResourceType"},
349
- {"shape":"InvalidResourceId"},
350
- {"shape":"InternalServerError"}
351
- ]
352
- },
353
- "SendCommand":{
354
- "name":"SendCommand",
355
- "http":{
356
- "method":"POST",
357
- "requestUri":"/"
358
- },
359
- "input":{"shape":"SendCommandRequest"},
360
- "output":{"shape":"SendCommandResult"},
361
- "errors":[
362
- {"shape":"DuplicateInstanceId"},
363
- {"shape":"InternalServerError"},
364
- {"shape":"InvalidInstanceId"},
365
- {"shape":"InvalidDocument"},
366
- {"shape":"InvalidOutputFolder"},
367
- {"shape":"InvalidParameters"},
368
- {"shape":"UnsupportedPlatformType"},
369
- {"shape":"MaxDocumentSizeExceeded"},
370
- {"shape":"InvalidRole"},
371
- {"shape":"InvalidNotificationConfig"}
372
- ]
373
- },
374
- "UpdateAssociationStatus":{
375
- "name":"UpdateAssociationStatus",
376
- "http":{
377
- "method":"POST",
378
- "requestUri":"/"
379
- },
380
- "input":{"shape":"UpdateAssociationStatusRequest"},
381
- "output":{"shape":"UpdateAssociationStatusResult"},
382
- "errors":[
383
- {"shape":"InternalServerError"},
384
- {"shape":"InvalidInstanceId"},
385
- {"shape":"InvalidDocument"},
386
- {"shape":"AssociationDoesNotExist"},
387
- {"shape":"StatusUnchanged"},
388
- {"shape":"TooManyUpdates"}
389
- ]
390
- },
391
- "UpdateManagedInstanceRole":{
392
- "name":"UpdateManagedInstanceRole",
393
- "http":{
394
- "method":"POST",
395
- "requestUri":"/"
396
- },
397
- "input":{"shape":"UpdateManagedInstanceRoleRequest"},
398
- "output":{"shape":"UpdateManagedInstanceRoleResult"},
399
- "errors":[
400
- {"shape":"InvalidInstanceId"},
401
- {"shape":"InternalServerError"}
402
- ]
403
- }
404
- },
405
- "shapes":{
406
- "AccountId":{
407
- "type":"string",
408
- "pattern":"(?i)all|[0-9]{12}"
409
- },
410
- "AccountIdList":{
411
- "type":"list",
412
- "member":{
413
- "shape":"AccountId",
414
- "locationName":"AccountId"
415
- },
416
- "max":20
417
- },
418
- "Activation":{
419
- "type":"structure",
420
- "members":{
421
- "ActivationId":{"shape":"ActivationId"},
422
- "Description":{"shape":"ActivationDescription"},
423
- "DefaultInstanceName":{"shape":"DefaultInstanceName"},
424
- "IamRole":{"shape":"IamRole"},
425
- "RegistrationLimit":{"shape":"RegistrationLimit"},
426
- "RegistrationsCount":{"shape":"RegistrationsCount"},
427
- "ExpirationDate":{"shape":"ExpirationDate"},
428
- "Expired":{"shape":"Boolean"},
429
- "CreatedDate":{"shape":"CreatedDate"}
430
- }
431
- },
432
- "ActivationCode":{
433
- "type":"string",
434
- "max":250,
435
- "min":20
436
- },
437
- "ActivationDescription":{
438
- "type":"string",
439
- "max":256,
440
- "min":0
441
- },
442
- "ActivationId":{
443
- "type":"string",
444
- "pattern":"^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$"
445
- },
446
- "ActivationList":{
447
- "type":"list",
448
- "member":{"shape":"Activation"}
449
- },
450
- "AddTagsToResourceRequest":{
451
- "type":"structure",
452
- "required":[
453
- "ResourceType",
454
- "ResourceId",
455
- "Tags"
456
- ],
457
- "members":{
458
- "ResourceType":{"shape":"ResourceTypeForTagging"},
459
- "ResourceId":{"shape":"ResourceId"},
460
- "Tags":{"shape":"TagList"}
461
- }
462
- },
463
- "AddTagsToResourceResult":{
464
- "type":"structure",
465
- "members":{
466
- }
467
- },
468
- "AssociatedInstances":{
469
- "type":"structure",
470
- "members":{
471
- },
472
- "exception":true
473
- },
474
- "Association":{
475
- "type":"structure",
476
- "members":{
477
- "Name":{"shape":"DocumentName"},
478
- "InstanceId":{"shape":"InstanceId"}
479
- }
480
- },
481
- "AssociationAlreadyExists":{
482
- "type":"structure",
483
- "members":{
484
- },
485
- "exception":true
486
- },
487
- "AssociationDescription":{
488
- "type":"structure",
489
- "members":{
490
- "Name":{"shape":"DocumentName"},
491
- "InstanceId":{"shape":"InstanceId"},
492
- "Date":{"shape":"DateTime"},
493
- "Status":{"shape":"AssociationStatus"},
494
- "Parameters":{"shape":"Parameters"}
495
- }
496
- },
497
- "AssociationDescriptionList":{
498
- "type":"list",
499
- "member":{
500
- "shape":"AssociationDescription",
501
- "locationName":"AssociationDescription"
502
- }
503
- },
504
- "AssociationDoesNotExist":{
505
- "type":"structure",
506
- "members":{
507
- },
508
- "exception":true
509
- },
510
- "AssociationFilter":{
511
- "type":"structure",
512
- "required":[
513
- "key",
514
- "value"
515
- ],
516
- "members":{
517
- "key":{"shape":"AssociationFilterKey"},
518
- "value":{"shape":"AssociationFilterValue"}
519
- }
520
- },
521
- "AssociationFilterKey":{
522
- "type":"string",
523
- "enum":[
524
- "InstanceId",
525
- "Name"
526
- ]
527
- },
528
- "AssociationFilterList":{
529
- "type":"list",
530
- "member":{
531
- "shape":"AssociationFilter",
532
- "locationName":"AssociationFilter"
533
- },
534
- "min":1
535
- },
536
- "AssociationFilterValue":{
537
- "type":"string",
538
- "min":1
539
- },
540
- "AssociationLimitExceeded":{
541
- "type":"structure",
542
- "members":{
543
- },
544
- "exception":true
545
- },
546
- "AssociationList":{
547
- "type":"list",
548
- "member":{
549
- "shape":"Association",
550
- "locationName":"Association"
551
- }
552
- },
553
- "AssociationStatus":{
554
- "type":"structure",
555
- "required":[
556
- "Date",
557
- "Name",
558
- "Message"
559
- ],
560
- "members":{
561
- "Date":{"shape":"DateTime"},
562
- "Name":{"shape":"AssociationStatusName"},
563
- "Message":{"shape":"StatusMessage"},
564
- "AdditionalInfo":{"shape":"StatusAdditionalInfo"}
565
- }
566
- },
567
- "AssociationStatusName":{
568
- "type":"string",
569
- "enum":[
570
- "Pending",
571
- "Success",
572
- "Failed"
573
- ]
574
- },
575
- "BatchErrorMessage":{"type":"string"},
576
- "Boolean":{"type":"boolean"},
577
- "CancelCommandRequest":{
578
- "type":"structure",
579
- "required":["CommandId"],
580
- "members":{
581
- "CommandId":{"shape":"CommandId"},
582
- "InstanceIds":{"shape":"InstanceIdList"}
583
- }
584
- },
585
- "CancelCommandResult":{
586
- "type":"structure",
587
- "members":{
588
- }
589
- },
590
- "Command":{
591
- "type":"structure",
592
- "members":{
593
- "CommandId":{"shape":"CommandId"},
594
- "DocumentName":{"shape":"DocumentName"},
595
- "Comment":{"shape":"Comment"},
596
- "ExpiresAfter":{"shape":"DateTime"},
597
- "Parameters":{"shape":"Parameters"},
598
- "InstanceIds":{"shape":"InstanceIdList"},
599
- "RequestedDateTime":{"shape":"DateTime"},
600
- "Status":{"shape":"CommandStatus"},
601
- "OutputS3BucketName":{"shape":"S3BucketName"},
602
- "OutputS3KeyPrefix":{"shape":"S3KeyPrefix"},
603
- "ServiceRole":{"shape":"ServiceRole"},
604
- "NotificationConfig":{"shape":"NotificationConfig"}
605
- }
606
- },
607
- "CommandFilter":{
608
- "type":"structure",
609
- "required":[
610
- "key",
611
- "value"
612
- ],
613
- "members":{
614
- "key":{"shape":"CommandFilterKey"},
615
- "value":{"shape":"CommandFilterValue"}
616
- }
617
- },
618
- "CommandFilterKey":{
619
- "type":"string",
620
- "enum":[
621
- "InvokedAfter",
622
- "InvokedBefore",
623
- "Status"
624
- ]
625
- },
626
- "CommandFilterList":{
627
- "type":"list",
628
- "member":{"shape":"CommandFilter"},
629
- "max":3,
630
- "min":1
631
- },
632
- "CommandFilterValue":{
633
- "type":"string",
634
- "min":1
635
- },
636
- "CommandId":{
637
- "type":"string",
638
- "max":36,
639
- "min":36
640
- },
641
- "CommandInvocation":{
642
- "type":"structure",
643
- "members":{
644
- "CommandId":{"shape":"CommandId"},
645
- "InstanceId":{"shape":"InstanceId"},
646
- "Comment":{"shape":"Comment"},
647
- "DocumentName":{"shape":"DocumentName"},
648
- "RequestedDateTime":{"shape":"DateTime"},
649
- "Status":{"shape":"CommandInvocationStatus"},
650
- "TraceOutput":{"shape":"InvocationTraceOutput"},
651
- "CommandPlugins":{"shape":"CommandPluginList"},
652
- "ServiceRole":{"shape":"ServiceRole"},
653
- "NotificationConfig":{"shape":"NotificationConfig"}
654
- }
655
- },
656
- "CommandInvocationList":{
657
- "type":"list",
658
- "member":{"shape":"CommandInvocation"}
659
- },
660
- "CommandInvocationStatus":{
661
- "type":"string",
662
- "enum":[
663
- "Pending",
664
- "InProgress",
665
- "Cancelling",
666
- "Success",
667
- "TimedOut",
668
- "Cancelled",
669
- "Failed"
670
- ]
671
- },
672
- "CommandList":{
673
- "type":"list",
674
- "member":{"shape":"Command"}
675
- },
676
- "CommandMaxResults":{
677
- "type":"integer",
678
- "max":50,
679
- "min":1
680
- },
681
- "CommandPlugin":{
682
- "type":"structure",
683
- "members":{
684
- "Name":{"shape":"CommandPluginName"},
685
- "Status":{"shape":"CommandPluginStatus"},
686
- "ResponseCode":{"shape":"ResponseCode"},
687
- "ResponseStartDateTime":{"shape":"DateTime"},
688
- "ResponseFinishDateTime":{"shape":"DateTime"},
689
- "Output":{"shape":"CommandPluginOutput"},
690
- "OutputS3BucketName":{"shape":"S3BucketName"},
691
- "OutputS3KeyPrefix":{"shape":"S3KeyPrefix"}
692
- }
693
- },
694
- "CommandPluginList":{
695
- "type":"list",
696
- "member":{"shape":"CommandPlugin"}
697
- },
698
- "CommandPluginName":{
699
- "type":"string",
700
- "min":4
701
- },
702
- "CommandPluginOutput":{
703
- "type":"string",
704
- "max":2500
705
- },
706
- "CommandPluginStatus":{
707
- "type":"string",
708
- "enum":[
709
- "Pending",
710
- "InProgress",
711
- "Success",
712
- "TimedOut",
713
- "Cancelled",
714
- "Failed"
715
- ]
716
- },
717
- "CommandStatus":{
718
- "type":"string",
719
- "enum":[
720
- "Pending",
721
- "InProgress",
722
- "Cancelling",
723
- "Success",
724
- "TimedOut",
725
- "Cancelled",
726
- "Failed"
727
- ]
728
- },
729
- "Comment":{
730
- "type":"string",
731
- "max":100
732
- },
733
- "ComputerName":{
734
- "type":"string",
735
- "max":255,
736
- "min":1
737
- },
738
- "CreateActivationRequest":{
739
- "type":"structure",
740
- "required":["IamRole"],
741
- "members":{
742
- "Description":{"shape":"ActivationDescription"},
743
- "DefaultInstanceName":{"shape":"DefaultInstanceName"},
744
- "IamRole":{"shape":"IamRole"},
745
- "RegistrationLimit":{
746
- "shape":"RegistrationLimit",
747
- "box":true
748
- },
749
- "ExpirationDate":{"shape":"ExpirationDate"}
750
- }
751
- },
752
- "CreateActivationResult":{
753
- "type":"structure",
754
- "members":{
755
- "ActivationId":{"shape":"ActivationId"},
756
- "ActivationCode":{"shape":"ActivationCode"}
757
- }
758
- },
759
- "CreateAssociationBatchRequest":{
760
- "type":"structure",
761
- "required":["Entries"],
762
- "members":{
763
- "Entries":{"shape":"CreateAssociationBatchRequestEntries"}
764
- }
765
- },
766
- "CreateAssociationBatchRequestEntries":{
767
- "type":"list",
768
- "member":{
769
- "shape":"CreateAssociationBatchRequestEntry",
770
- "locationName":"entries"
771
- }
772
- },
773
- "CreateAssociationBatchRequestEntry":{
774
- "type":"structure",
775
- "members":{
776
- "Name":{"shape":"DocumentName"},
777
- "InstanceId":{"shape":"InstanceId"},
778
- "Parameters":{"shape":"Parameters"}
779
- }
780
- },
781
- "CreateAssociationBatchResult":{
782
- "type":"structure",
783
- "members":{
784
- "Successful":{"shape":"AssociationDescriptionList"},
785
- "Failed":{"shape":"FailedCreateAssociationList"}
786
- }
787
- },
788
- "CreateAssociationRequest":{
789
- "type":"structure",
790
- "required":[
791
- "Name",
792
- "InstanceId"
793
- ],
794
- "members":{
795
- "Name":{"shape":"DocumentName"},
796
- "InstanceId":{"shape":"InstanceId"},
797
- "Parameters":{"shape":"Parameters"}
798
- }
799
- },
800
- "CreateAssociationResult":{
801
- "type":"structure",
802
- "members":{
803
- "AssociationDescription":{"shape":"AssociationDescription"}
804
- }
805
- },
806
- "CreateDocumentRequest":{
807
- "type":"structure",
808
- "required":[
809
- "Content",
810
- "Name"
811
- ],
812
- "members":{
813
- "Content":{"shape":"DocumentContent"},
814
- "Name":{"shape":"DocumentName"}
815
- }
816
- },
817
- "CreateDocumentResult":{
818
- "type":"structure",
819
- "members":{
820
- "DocumentDescription":{"shape":"DocumentDescription"}
821
- }
822
- },
823
- "CreatedDate":{"type":"timestamp"},
824
- "DateTime":{"type":"timestamp"},
825
- "DefaultInstanceName":{
826
- "type":"string",
827
- "max":256,
828
- "min":0,
829
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
830
- },
831
- "DeleteActivationRequest":{
832
- "type":"structure",
833
- "required":["ActivationId"],
834
- "members":{
835
- "ActivationId":{"shape":"ActivationId"}
836
- }
837
- },
838
- "DeleteActivationResult":{
839
- "type":"structure",
840
- "members":{
841
- }
842
- },
843
- "DeleteAssociationRequest":{
844
- "type":"structure",
845
- "required":[
846
- "Name",
847
- "InstanceId"
848
- ],
849
- "members":{
850
- "Name":{"shape":"DocumentName"},
851
- "InstanceId":{"shape":"InstanceId"}
852
- }
853
- },
854
- "DeleteAssociationResult":{
855
- "type":"structure",
856
- "members":{
857
- }
858
- },
859
- "DeleteDocumentRequest":{
860
- "type":"structure",
861
- "required":["Name"],
862
- "members":{
863
- "Name":{"shape":"DocumentName"}
864
- }
865
- },
866
- "DeleteDocumentResult":{
867
- "type":"structure",
868
- "members":{
869
- }
870
- },
871
- "DeregisterManagedInstanceRequest":{
872
- "type":"structure",
873
- "required":["InstanceId"],
874
- "members":{
875
- "InstanceId":{"shape":"ManagedInstanceId"}
876
- }
877
- },
878
- "DeregisterManagedInstanceResult":{
879
- "type":"structure",
880
- "members":{
881
- }
882
- },
883
- "DescribeActivationsFilter":{
884
- "type":"structure",
885
- "members":{
886
- "FilterKey":{"shape":"DescribeActivationsFilterKeys"},
887
- "FilterValues":{"shape":"StringList"}
888
- }
889
- },
890
- "DescribeActivationsFilterKeys":{
891
- "type":"string",
892
- "enum":[
893
- "ActivationIds",
894
- "DefaultInstanceName",
895
- "IamRole"
896
- ]
897
- },
898
- "DescribeActivationsFilterList":{
899
- "type":"list",
900
- "member":{"shape":"DescribeActivationsFilter"}
901
- },
902
- "DescribeActivationsRequest":{
903
- "type":"structure",
904
- "members":{
905
- "Filters":{"shape":"DescribeActivationsFilterList"},
906
- "MaxResults":{
907
- "shape":"MaxResults",
908
- "box":true
909
- },
910
- "NextToken":{"shape":"NextToken"}
911
- }
912
- },
913
- "DescribeActivationsResult":{
914
- "type":"structure",
915
- "members":{
916
- "ActivationList":{"shape":"ActivationList"},
917
- "NextToken":{"shape":"NextToken"}
918
- }
919
- },
920
- "DescribeAssociationRequest":{
921
- "type":"structure",
922
- "required":[
923
- "Name",
924
- "InstanceId"
925
- ],
926
- "members":{
927
- "Name":{"shape":"DocumentName"},
928
- "InstanceId":{"shape":"InstanceId"}
929
- }
930
- },
931
- "DescribeAssociationResult":{
932
- "type":"structure",
933
- "members":{
934
- "AssociationDescription":{"shape":"AssociationDescription"}
935
- }
936
- },
937
- "DescribeDocumentPermissionRequest":{
938
- "type":"structure",
939
- "required":[
940
- "Name",
941
- "PermissionType"
942
- ],
943
- "members":{
944
- "Name":{"shape":"DocumentName"},
945
- "PermissionType":{"shape":"DocumentPermissionType"}
946
- }
947
- },
948
- "DescribeDocumentPermissionResponse":{
949
- "type":"structure",
950
- "members":{
951
- "AccountIds":{"shape":"AccountIdList"}
952
- }
953
- },
954
- "DescribeDocumentRequest":{
955
- "type":"structure",
956
- "required":["Name"],
957
- "members":{
958
- "Name":{"shape":"DocumentARN"}
959
- }
960
- },
961
- "DescribeDocumentResult":{
962
- "type":"structure",
963
- "members":{
964
- "Document":{"shape":"DocumentDescription"}
965
- }
966
- },
967
- "DescribeInstanceInformationRequest":{
968
- "type":"structure",
969
- "members":{
970
- "InstanceInformationFilterList":{"shape":"InstanceInformationFilterList"},
971
- "MaxResults":{
972
- "shape":"MaxResultsEC2Compatible",
973
- "box":true
974
- },
975
- "NextToken":{"shape":"NextToken"}
976
- }
977
- },
978
- "DescribeInstanceInformationResult":{
979
- "type":"structure",
980
- "members":{
981
- "InstanceInformationList":{"shape":"InstanceInformationList"},
982
- "NextToken":{"shape":"NextToken"}
983
- }
984
- },
985
- "DescriptionInDocument":{"type":"string"},
986
- "DocumentARN":{
987
- "type":"string",
988
- "pattern":"^[a-zA-Z0-9_\\-.:/]{3,128}$"
989
- },
990
- "DocumentAlreadyExists":{
991
- "type":"structure",
992
- "members":{
993
- "Message":{"shape":"String"}
994
- },
995
- "exception":true
996
- },
997
- "DocumentContent":{
998
- "type":"string",
999
- "min":1
1000
- },
1001
- "DocumentDescription":{
1002
- "type":"structure",
1003
- "members":{
1004
- "Sha1":{"shape":"DocumentSha1"},
1005
- "Hash":{"shape":"DocumentHash"},
1006
- "HashType":{"shape":"DocumentHashType"},
1007
- "Name":{"shape":"DocumentARN"},
1008
- "Owner":{"shape":"DocumentOwner"},
1009
- "CreatedDate":{"shape":"DateTime"},
1010
- "Status":{"shape":"DocumentStatus"},
1011
- "Description":{"shape":"DescriptionInDocument"},
1012
- "Parameters":{"shape":"DocumentParameterList"},
1013
- "PlatformTypes":{"shape":"PlatformTypeList"}
1014
- }
1015
- },
1016
- "DocumentFilter":{
1017
- "type":"structure",
1018
- "required":[
1019
- "key",
1020
- "value"
1021
- ],
1022
- "members":{
1023
- "key":{"shape":"DocumentFilterKey"},
1024
- "value":{"shape":"DocumentFilterValue"}
1025
- }
1026
- },
1027
- "DocumentFilterKey":{
1028
- "type":"string",
1029
- "enum":[
1030
- "Name",
1031
- "Owner",
1032
- "PlatformTypes"
1033
- ]
1034
- },
1035
- "DocumentFilterList":{
1036
- "type":"list",
1037
- "member":{
1038
- "shape":"DocumentFilter",
1039
- "locationName":"DocumentFilter"
1040
- },
1041
- "min":1
1042
- },
1043
- "DocumentFilterValue":{
1044
- "type":"string",
1045
- "min":1
1046
- },
1047
- "DocumentHash":{
1048
- "type":"string",
1049
- "max":256
1050
- },
1051
- "DocumentHashType":{
1052
- "type":"string",
1053
- "enum":[
1054
- "Sha256",
1055
- "Sha1"
1056
- ]
1057
- },
1058
- "DocumentIdentifier":{
1059
- "type":"structure",
1060
- "members":{
1061
- "Name":{"shape":"DocumentARN"},
1062
- "Owner":{"shape":"DocumentOwner"},
1063
- "PlatformTypes":{"shape":"PlatformTypeList"}
1064
- }
1065
- },
1066
- "DocumentIdentifierList":{
1067
- "type":"list",
1068
- "member":{
1069
- "shape":"DocumentIdentifier",
1070
- "locationName":"DocumentIdentifier"
1071
- }
1072
- },
1073
- "DocumentLimitExceeded":{
1074
- "type":"structure",
1075
- "members":{
1076
- "Message":{"shape":"String"}
1077
- },
1078
- "exception":true
1079
- },
1080
- "DocumentName":{
1081
- "type":"string",
1082
- "pattern":"^[a-zA-Z0-9_\\-.]{3,128}$"
1083
- },
1084
- "DocumentOwner":{"type":"string"},
1085
- "DocumentParameter":{
1086
- "type":"structure",
1087
- "members":{
1088
- "Name":{"shape":"DocumentParameterName"},
1089
- "Type":{"shape":"DocumentParameterType"},
1090
- "Description":{"shape":"DocumentParameterDescrption"},
1091
- "DefaultValue":{"shape":"DocumentParameterDefaultValue"}
1092
- }
1093
- },
1094
- "DocumentParameterDefaultValue":{"type":"string"},
1095
- "DocumentParameterDescrption":{"type":"string"},
1096
- "DocumentParameterList":{
1097
- "type":"list",
1098
- "member":{
1099
- "shape":"DocumentParameter",
1100
- "locationName":"DocumentParameter"
1101
- }
1102
- },
1103
- "DocumentParameterName":{"type":"string"},
1104
- "DocumentParameterType":{
1105
- "type":"string",
1106
- "enum":[
1107
- "String",
1108
- "StringList"
1109
- ]
1110
- },
1111
- "DocumentPermissionLimit":{
1112
- "type":"structure",
1113
- "members":{
1114
- "Message":{"shape":"String"}
1115
- },
1116
- "exception":true
1117
- },
1118
- "DocumentPermissionType":{
1119
- "type":"string",
1120
- "enum":["Share"]
1121
- },
1122
- "DocumentSha1":{"type":"string"},
1123
- "DocumentStatus":{
1124
- "type":"string",
1125
- "enum":[
1126
- "Creating",
1127
- "Active",
1128
- "Deleting"
1129
- ]
1130
- },
1131
- "DuplicateInstanceId":{
1132
- "type":"structure",
1133
- "members":{
1134
- },
1135
- "exception":true
1136
- },
1137
- "ExpirationDate":{"type":"timestamp"},
1138
- "FailedCreateAssociation":{
1139
- "type":"structure",
1140
- "members":{
1141
- "Entry":{"shape":"CreateAssociationBatchRequestEntry"},
1142
- "Message":{"shape":"BatchErrorMessage"},
1143
- "Fault":{"shape":"Fault"}
1144
- }
1145
- },
1146
- "FailedCreateAssociationList":{
1147
- "type":"list",
1148
- "member":{
1149
- "shape":"FailedCreateAssociation",
1150
- "locationName":"FailedCreateAssociationEntry"
1151
- }
1152
- },
1153
- "Fault":{
1154
- "type":"string",
1155
- "enum":[
1156
- "Client",
1157
- "Server",
1158
- "Unknown"
1159
- ]
1160
- },
1161
- "GetDocumentRequest":{
1162
- "type":"structure",
1163
- "required":["Name"],
1164
- "members":{
1165
- "Name":{"shape":"DocumentARN"}
1166
- }
1167
- },
1168
- "GetDocumentResult":{
1169
- "type":"structure",
1170
- "members":{
1171
- "Name":{"shape":"DocumentARN"},
1172
- "Content":{"shape":"DocumentContent"}
1173
- }
1174
- },
1175
- "IPAddress":{
1176
- "type":"string",
1177
- "max":46,
1178
- "min":1
1179
- },
1180
- "IamRole":{
1181
- "type":"string",
1182
- "max":64
1183
- },
1184
- "InstanceId":{
1185
- "type":"string",
1186
- "pattern":"(^i-(\\w{8}|\\w{17})$)|(^mi-\\w{17}$)"
1187
- },
1188
- "InstanceIdList":{
1189
- "type":"list",
1190
- "member":{"shape":"InstanceId"},
1191
- "max":50,
1192
- "min":1
1193
- },
1194
- "InstanceInformation":{
1195
- "type":"structure",
1196
- "members":{
1197
- "InstanceId":{"shape":"InstanceId"},
1198
- "PingStatus":{"shape":"PingStatus"},
1199
- "LastPingDateTime":{
1200
- "shape":"DateTime",
1201
- "box":true
1202
- },
1203
- "AgentVersion":{"shape":"Version"},
1204
- "IsLatestVersion":{
1205
- "shape":"Boolean",
1206
- "box":true
1207
- },
1208
- "PlatformType":{"shape":"PlatformType"},
1209
- "PlatformName":{"shape":"String"},
1210
- "PlatformVersion":{"shape":"String"},
1211
- "ActivationId":{"shape":"ActivationId"},
1212
- "IamRole":{"shape":"IamRole"},
1213
- "RegistrationDate":{
1214
- "shape":"DateTime",
1215
- "box":true
1216
- },
1217
- "ResourceType":{"shape":"ResourceType"},
1218
- "Name":{"shape":"String"},
1219
- "IPAddress":{"shape":"IPAddress"},
1220
- "ComputerName":{"shape":"ComputerName"}
1221
- }
1222
- },
1223
- "InstanceInformationFilter":{
1224
- "type":"structure",
1225
- "required":[
1226
- "key",
1227
- "valueSet"
1228
- ],
1229
- "members":{
1230
- "key":{"shape":"InstanceInformationFilterKey"},
1231
- "valueSet":{"shape":"InstanceInformationFilterValueSet"}
1232
- }
1233
- },
1234
- "InstanceInformationFilterKey":{
1235
- "type":"string",
1236
- "enum":[
1237
- "InstanceIds",
1238
- "AgentVersion",
1239
- "PingStatus",
1240
- "PlatformTypes",
1241
- "ActivationIds",
1242
- "IamRole",
1243
- "ResourceType"
1244
- ]
1245
- },
1246
- "InstanceInformationFilterList":{
1247
- "type":"list",
1248
- "member":{
1249
- "shape":"InstanceInformationFilter",
1250
- "locationName":"InstanceInformationFilter"
1251
- },
1252
- "min":1
1253
- },
1254
- "InstanceInformationFilterValue":{
1255
- "type":"string",
1256
- "min":1
1257
- },
1258
- "InstanceInformationFilterValueSet":{
1259
- "type":"list",
1260
- "member":{
1261
- "shape":"InstanceInformationFilterValue",
1262
- "locationName":"InstanceInformationFilterValue"
1263
- },
1264
- "max":100,
1265
- "min":1
1266
- },
1267
- "InstanceInformationList":{
1268
- "type":"list",
1269
- "member":{
1270
- "shape":"InstanceInformation",
1271
- "locationName":"InstanceInformation"
1272
- }
1273
- },
1274
- "InternalServerError":{
1275
- "type":"structure",
1276
- "members":{
1277
- "Message":{"shape":"String"}
1278
- },
1279
- "exception":true
1280
- },
1281
- "InvalidActivation":{
1282
- "type":"structure",
1283
- "members":{
1284
- "Message":{"shape":"String"}
1285
- },
1286
- "exception":true
1287
- },
1288
- "InvalidActivationId":{
1289
- "type":"structure",
1290
- "members":{
1291
- "Message":{"shape":"String"}
1292
- },
1293
- "exception":true
1294
- },
1295
- "InvalidCommandId":{
1296
- "type":"structure",
1297
- "members":{
1298
- },
1299
- "exception":true
1300
- },
1301
- "InvalidDocument":{
1302
- "type":"structure",
1303
- "members":{
1304
- "Message":{"shape":"String"}
1305
- },
1306
- "exception":true
1307
- },
1308
- "InvalidDocumentContent":{
1309
- "type":"structure",
1310
- "members":{
1311
- "Message":{"shape":"String"}
1312
- },
1313
- "exception":true
1314
- },
1315
- "InvalidDocumentOperation":{
1316
- "type":"structure",
1317
- "members":{
1318
- "Message":{"shape":"String"}
1319
- },
1320
- "exception":true
1321
- },
1322
- "InvalidFilter":{
1323
- "type":"structure",
1324
- "members":{
1325
- "Message":{"shape":"String"}
1326
- },
1327
- "exception":true
1328
- },
1329
- "InvalidFilterKey":{
1330
- "type":"structure",
1331
- "members":{
1332
- },
1333
- "exception":true
1334
- },
1335
- "InvalidInstanceId":{
1336
- "type":"structure",
1337
- "members":{
1338
- "Message":{"shape":"String"}
1339
- },
1340
- "exception":true
1341
- },
1342
- "InvalidInstanceInformationFilterValue":{
1343
- "type":"structure",
1344
- "members":{
1345
- "message":{"shape":"String"}
1346
- },
1347
- "exception":true
1348
- },
1349
- "InvalidNextToken":{
1350
- "type":"structure",
1351
- "members":{
1352
- },
1353
- "exception":true
1354
- },
1355
- "InvalidNotificationConfig":{
1356
- "type":"structure",
1357
- "members":{
1358
- "Message":{"shape":"String"}
1359
- },
1360
- "exception":true
1361
- },
1362
- "InvalidOutputFolder":{
1363
- "type":"structure",
1364
- "members":{
1365
- },
1366
- "exception":true
1367
- },
1368
- "InvalidParameters":{
1369
- "type":"structure",
1370
- "members":{
1371
- "Message":{"shape":"String"}
1372
- },
1373
- "exception":true
1374
- },
1375
- "InvalidPermissionType":{
1376
- "type":"structure",
1377
- "members":{
1378
- "Message":{"shape":"String"}
1379
- },
1380
- "exception":true
1381
- },
1382
- "InvalidResourceId":{
1383
- "type":"structure",
1384
- "members":{
1385
- },
1386
- "exception":true
1387
- },
1388
- "InvalidResourceType":{
1389
- "type":"structure",
1390
- "members":{
1391
- },
1392
- "exception":true
1393
- },
1394
- "InvalidRole":{
1395
- "type":"structure",
1396
- "members":{
1397
- "Message":{"shape":"String"}
1398
- },
1399
- "exception":true
1400
- },
1401
- "InvocationTraceOutput":{
1402
- "type":"string",
1403
- "max":2500
1404
- },
1405
- "KeyList":{
1406
- "type":"list",
1407
- "member":{"shape":"TagKey"}
1408
- },
1409
- "ListAssociationsRequest":{
1410
- "type":"structure",
1411
- "required":["AssociationFilterList"],
1412
- "members":{
1413
- "AssociationFilterList":{"shape":"AssociationFilterList"},
1414
- "MaxResults":{
1415
- "shape":"MaxResults",
1416
- "box":true
1417
- },
1418
- "NextToken":{"shape":"NextToken"}
1419
- }
1420
- },
1421
- "ListAssociationsResult":{
1422
- "type":"structure",
1423
- "members":{
1424
- "Associations":{"shape":"AssociationList"},
1425
- "NextToken":{"shape":"NextToken"}
1426
- }
1427
- },
1428
- "ListCommandInvocationsRequest":{
1429
- "type":"structure",
1430
- "members":{
1431
- "CommandId":{"shape":"CommandId"},
1432
- "InstanceId":{"shape":"InstanceId"},
1433
- "MaxResults":{
1434
- "shape":"CommandMaxResults",
1435
- "box":true
1436
- },
1437
- "NextToken":{"shape":"NextToken"},
1438
- "Filters":{"shape":"CommandFilterList"},
1439
- "Details":{"shape":"Boolean"}
1440
- }
1441
- },
1442
- "ListCommandInvocationsResult":{
1443
- "type":"structure",
1444
- "members":{
1445
- "CommandInvocations":{"shape":"CommandInvocationList"},
1446
- "NextToken":{"shape":"NextToken"}
1447
- }
1448
- },
1449
- "ListCommandsRequest":{
1450
- "type":"structure",
1451
- "members":{
1452
- "CommandId":{"shape":"CommandId"},
1453
- "InstanceId":{"shape":"InstanceId"},
1454
- "MaxResults":{
1455
- "shape":"CommandMaxResults",
1456
- "box":true
1457
- },
1458
- "NextToken":{"shape":"NextToken"},
1459
- "Filters":{"shape":"CommandFilterList"}
1460
- }
1461
- },
1462
- "ListCommandsResult":{
1463
- "type":"structure",
1464
- "members":{
1465
- "Commands":{"shape":"CommandList"},
1466
- "NextToken":{"shape":"NextToken"}
1467
- }
1468
- },
1469
- "ListDocumentsRequest":{
1470
- "type":"structure",
1471
- "members":{
1472
- "DocumentFilterList":{"shape":"DocumentFilterList"},
1473
- "MaxResults":{
1474
- "shape":"MaxResults",
1475
- "box":true
1476
- },
1477
- "NextToken":{"shape":"NextToken"}
1478
- }
1479
- },
1480
- "ListDocumentsResult":{
1481
- "type":"structure",
1482
- "members":{
1483
- "DocumentIdentifiers":{"shape":"DocumentIdentifierList"},
1484
- "NextToken":{"shape":"NextToken"}
1485
- }
1486
- },
1487
- "ListTagsForResourceRequest":{
1488
- "type":"structure",
1489
- "required":[
1490
- "ResourceType",
1491
- "ResourceId"
1492
- ],
1493
- "members":{
1494
- "ResourceType":{"shape":"ResourceTypeForTagging"},
1495
- "ResourceId":{"shape":"ResourceId"}
1496
- }
1497
- },
1498
- "ListTagsForResourceResult":{
1499
- "type":"structure",
1500
- "members":{
1501
- "TagList":{"shape":"TagList"}
1502
- }
1503
- },
1504
- "ManagedInstanceId":{
1505
- "type":"string",
1506
- "pattern":"^mi-[0-9a-f]{17}$"
1507
- },
1508
- "MaxDocumentSizeExceeded":{
1509
- "type":"structure",
1510
- "members":{
1511
- "Message":{"shape":"String"}
1512
- },
1513
- "exception":true
1514
- },
1515
- "MaxResults":{
1516
- "type":"integer",
1517
- "max":50,
1518
- "min":1
1519
- },
1520
- "MaxResultsEC2Compatible":{
1521
- "type":"integer",
1522
- "max":50,
1523
- "min":5
1524
- },
1525
- "ModifyDocumentPermissionRequest":{
1526
- "type":"structure",
1527
- "required":[
1528
- "Name",
1529
- "PermissionType"
1530
- ],
1531
- "members":{
1532
- "Name":{"shape":"DocumentName"},
1533
- "PermissionType":{"shape":"DocumentPermissionType"},
1534
- "AccountIdsToAdd":{"shape":"AccountIdList"},
1535
- "AccountIdsToRemove":{"shape":"AccountIdList"}
1536
- }
1537
- },
1538
- "ModifyDocumentPermissionResponse":{
1539
- "type":"structure",
1540
- "members":{
1541
- }
1542
- },
1543
- "NextToken":{"type":"string"},
1544
- "NotificationArn":{"type":"string"},
1545
- "NotificationConfig":{
1546
- "type":"structure",
1547
- "members":{
1548
- "NotificationArn":{"shape":"NotificationArn"},
1549
- "NotificationEvents":{"shape":"NotificationEventList"},
1550
- "NotificationType":{"shape":"NotificationType"}
1551
- }
1552
- },
1553
- "NotificationEvent":{
1554
- "type":"string",
1555
- "enum":[
1556
- "All",
1557
- "InProgress",
1558
- "Success",
1559
- "TimedOut",
1560
- "Cancelled",
1561
- "Failed"
1562
- ]
1563
- },
1564
- "NotificationEventList":{
1565
- "type":"list",
1566
- "member":{"shape":"NotificationEvent"}
1567
- },
1568
- "NotificationType":{
1569
- "type":"string",
1570
- "enum":[
1571
- "Command",
1572
- "Invocation"
1573
- ]
1574
- },
1575
- "ParameterName":{"type":"string"},
1576
- "ParameterValue":{"type":"string"},
1577
- "ParameterValueList":{
1578
- "type":"list",
1579
- "member":{"shape":"ParameterValue"}
1580
- },
1581
- "Parameters":{
1582
- "type":"map",
1583
- "key":{"shape":"ParameterName"},
1584
- "value":{"shape":"ParameterValueList"}
1585
- },
1586
- "PingStatus":{
1587
- "type":"string",
1588
- "enum":[
1589
- "Online",
1590
- "ConnectionLost",
1591
- "Inactive"
1592
- ]
1593
- },
1594
- "PlatformType":{
1595
- "type":"string",
1596
- "enum":[
1597
- "Windows",
1598
- "Linux"
1599
- ]
1600
- },
1601
- "PlatformTypeList":{
1602
- "type":"list",
1603
- "member":{
1604
- "shape":"PlatformType",
1605
- "locationName":"PlatformType"
1606
- }
1607
- },
1608
- "RegistrationLimit":{
1609
- "type":"integer",
1610
- "max":1000,
1611
- "min":1
1612
- },
1613
- "RegistrationsCount":{
1614
- "type":"integer",
1615
- "max":1000,
1616
- "min":1
1617
- },
1618
- "RemoveTagsFromResourceRequest":{
1619
- "type":"structure",
1620
- "required":[
1621
- "ResourceType",
1622
- "ResourceId",
1623
- "TagKeys"
1624
- ],
1625
- "members":{
1626
- "ResourceType":{"shape":"ResourceTypeForTagging"},
1627
- "ResourceId":{"shape":"ResourceId"},
1628
- "TagKeys":{"shape":"KeyList"}
1629
- }
1630
- },
1631
- "RemoveTagsFromResourceResult":{
1632
- "type":"structure",
1633
- "members":{
1634
- }
1635
- },
1636
- "ResourceId":{
1637
- "type":"string",
1638
- "pattern":"^mi-[0-9a-f]{17}$"
1639
- },
1640
- "ResourceType":{
1641
- "type":"string",
1642
- "enum":[
1643
- "ManagedInstance",
1644
- "Document",
1645
- "EC2Instance"
1646
- ]
1647
- },
1648
- "ResourceTypeForTagging":{
1649
- "type":"string",
1650
- "enum":["ManagedInstance"]
1651
- },
1652
- "ResponseCode":{"type":"integer"},
1653
- "S3BucketName":{
1654
- "type":"string",
1655
- "max":63,
1656
- "min":3
1657
- },
1658
- "S3KeyPrefix":{
1659
- "type":"string",
1660
- "max":500
1661
- },
1662
- "SendCommandRequest":{
1663
- "type":"structure",
1664
- "required":[
1665
- "InstanceIds",
1666
- "DocumentName"
1667
- ],
1668
- "members":{
1669
- "InstanceIds":{"shape":"InstanceIdList"},
1670
- "DocumentName":{"shape":"DocumentARN"},
1671
- "DocumentHash":{"shape":"DocumentHash"},
1672
- "DocumentHashType":{"shape":"DocumentHashType"},
1673
- "TimeoutSeconds":{
1674
- "shape":"TimeoutSeconds",
1675
- "box":true
1676
- },
1677
- "Comment":{"shape":"Comment"},
1678
- "Parameters":{"shape":"Parameters"},
1679
- "OutputS3BucketName":{"shape":"S3BucketName"},
1680
- "OutputS3KeyPrefix":{"shape":"S3KeyPrefix"},
1681
- "ServiceRoleArn":{"shape":"ServiceRole"},
1682
- "NotificationConfig":{"shape":"NotificationConfig"}
1683
- }
1684
- },
1685
- "SendCommandResult":{
1686
- "type":"structure",
1687
- "members":{
1688
- "Command":{"shape":"Command"}
1689
- }
1690
- },
1691
- "ServiceRole":{"type":"string"},
1692
- "StatusAdditionalInfo":{
1693
- "type":"string",
1694
- "max":1024
1695
- },
1696
- "StatusMessage":{
1697
- "type":"string",
1698
- "max":1024
1699
- },
1700
- "StatusUnchanged":{
1701
- "type":"structure",
1702
- "members":{
1703
- },
1704
- "exception":true
1705
- },
1706
- "String":{"type":"string"},
1707
- "StringList":{
1708
- "type":"list",
1709
- "member":{"shape":"String"}
1710
- },
1711
- "Tag":{
1712
- "type":"structure",
1713
- "required":[
1714
- "Key",
1715
- "Value"
1716
- ],
1717
- "members":{
1718
- "Key":{"shape":"TagKey"},
1719
- "Value":{"shape":"TagValue"}
1720
- }
1721
- },
1722
- "TagKey":{
1723
- "type":"string",
1724
- "max":128,
1725
- "min":1,
1726
- "pattern":"^(?!^(?i)aws:)(?=^[\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*$).*$"
1727
- },
1728
- "TagList":{
1729
- "type":"list",
1730
- "member":{"shape":"Tag"}
1731
- },
1732
- "TagValue":{
1733
- "type":"string",
1734
- "max":256,
1735
- "min":1,
1736
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
1737
- },
1738
- "TimeoutSeconds":{
1739
- "type":"integer",
1740
- "max":2592000,
1741
- "min":30
1742
- },
1743
- "TooManyUpdates":{
1744
- "type":"structure",
1745
- "members":{
1746
- },
1747
- "exception":true
1748
- },
1749
- "UnsupportedPlatformType":{
1750
- "type":"structure",
1751
- "members":{
1752
- "Message":{"shape":"String"}
1753
- },
1754
- "exception":true
1755
- },
1756
- "UpdateAssociationStatusRequest":{
1757
- "type":"structure",
1758
- "required":[
1759
- "Name",
1760
- "InstanceId",
1761
- "AssociationStatus"
1762
- ],
1763
- "members":{
1764
- "Name":{"shape":"DocumentName"},
1765
- "InstanceId":{"shape":"InstanceId"},
1766
- "AssociationStatus":{"shape":"AssociationStatus"}
1767
- }
1768
- },
1769
- "UpdateAssociationStatusResult":{
1770
- "type":"structure",
1771
- "members":{
1772
- "AssociationDescription":{"shape":"AssociationDescription"}
1773
- }
1774
- },
1775
- "UpdateManagedInstanceRoleRequest":{
1776
- "type":"structure",
1777
- "required":[
1778
- "InstanceId",
1779
- "IamRole"
1780
- ],
1781
- "members":{
1782
- "InstanceId":{"shape":"ManagedInstanceId"},
1783
- "IamRole":{"shape":"IamRole"}
1784
- }
1785
- },
1786
- "UpdateManagedInstanceRoleResult":{
1787
- "type":"structure",
1788
- "members":{
1789
- }
1790
- },
1791
- "Version":{
1792
- "type":"string",
1793
- "pattern":"^[0-9]{1,6}(\\.[0-9]{1,6}){2,3}$"
1794
- }
1795
- }
1796
- }