aws-sdk-core 2.3.23 → 3.89.1

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