aws-sdk-core 2.4.0 → 3.53.0

Sign up to get free protection for your applications and to get access to all the features.
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,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,14 +0,0 @@
1
- {
2
- "pagination": {
3
- "ListBranches": {
4
- "input_token": "nextToken",
5
- "output_token": "nextToken",
6
- "result_key": "branches"
7
- },
8
- "ListRepositories": {
9
- "input_token": "nextToken",
10
- "output_token": "nextToken",
11
- "result_key": "repositories"
12
- }
13
- }
14
- }
@@ -1,1954 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2014-10-06",
5
- "endpointPrefix":"codedeploy",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceAbbreviation":"CodeDeploy",
9
- "serviceFullName":"AWS CodeDeploy",
10
- "signatureVersion":"v4",
11
- "targetPrefix":"CodeDeploy_20141006",
12
- "timestampFormat":"unixTimestamp"
13
- },
14
- "operations":{
15
- "AddTagsToOnPremisesInstances":{
16
- "name":"AddTagsToOnPremisesInstances",
17
- "http":{
18
- "method":"POST",
19
- "requestUri":"/"
20
- },
21
- "input":{"shape":"AddTagsToOnPremisesInstancesInput"},
22
- "errors":[
23
- {"shape":"InstanceNameRequiredException"},
24
- {"shape":"TagRequiredException"},
25
- {"shape":"InvalidTagException"},
26
- {"shape":"TagLimitExceededException"},
27
- {"shape":"InstanceLimitExceededException"},
28
- {"shape":"InstanceNotRegisteredException"}
29
- ]
30
- },
31
- "BatchGetApplicationRevisions":{
32
- "name":"BatchGetApplicationRevisions",
33
- "http":{
34
- "method":"POST",
35
- "requestUri":"/"
36
- },
37
- "input":{"shape":"BatchGetApplicationRevisionsInput"},
38
- "output":{"shape":"BatchGetApplicationRevisionsOutput"},
39
- "errors":[
40
- {"shape":"ApplicationDoesNotExistException"},
41
- {"shape":"ApplicationNameRequiredException"},
42
- {"shape":"InvalidApplicationNameException"},
43
- {"shape":"RevisionRequiredException"},
44
- {"shape":"InvalidRevisionException"},
45
- {"shape":"BatchLimitExceededException"}
46
- ]
47
- },
48
- "BatchGetApplications":{
49
- "name":"BatchGetApplications",
50
- "http":{
51
- "method":"POST",
52
- "requestUri":"/"
53
- },
54
- "input":{"shape":"BatchGetApplicationsInput"},
55
- "output":{"shape":"BatchGetApplicationsOutput"},
56
- "errors":[
57
- {"shape":"ApplicationNameRequiredException"},
58
- {"shape":"InvalidApplicationNameException"},
59
- {"shape":"ApplicationDoesNotExistException"},
60
- {"shape":"BatchLimitExceededException"}
61
- ]
62
- },
63
- "BatchGetDeploymentGroups":{
64
- "name":"BatchGetDeploymentGroups",
65
- "http":{
66
- "method":"POST",
67
- "requestUri":"/"
68
- },
69
- "input":{"shape":"BatchGetDeploymentGroupsInput"},
70
- "output":{"shape":"BatchGetDeploymentGroupsOutput"},
71
- "errors":[
72
- {"shape":"ApplicationNameRequiredException"},
73
- {"shape":"InvalidApplicationNameException"},
74
- {"shape":"ApplicationDoesNotExistException"},
75
- {"shape":"DeploymentGroupNameRequiredException"},
76
- {"shape":"InvalidDeploymentGroupNameException"},
77
- {"shape":"BatchLimitExceededException"}
78
- ]
79
- },
80
- "BatchGetDeploymentInstances":{
81
- "name":"BatchGetDeploymentInstances",
82
- "http":{
83
- "method":"POST",
84
- "requestUri":"/"
85
- },
86
- "input":{"shape":"BatchGetDeploymentInstancesInput"},
87
- "output":{"shape":"BatchGetDeploymentInstancesOutput"},
88
- "errors":[
89
- {"shape":"DeploymentIdRequiredException"},
90
- {"shape":"DeploymentDoesNotExistException"},
91
- {"shape":"InstanceIdRequiredException"},
92
- {"shape":"InvalidDeploymentIdException"},
93
- {"shape":"InvalidInstanceNameException"},
94
- {"shape":"BatchLimitExceededException"}
95
- ]
96
- },
97
- "BatchGetDeployments":{
98
- "name":"BatchGetDeployments",
99
- "http":{
100
- "method":"POST",
101
- "requestUri":"/"
102
- },
103
- "input":{"shape":"BatchGetDeploymentsInput"},
104
- "output":{"shape":"BatchGetDeploymentsOutput"},
105
- "errors":[
106
- {"shape":"DeploymentIdRequiredException"},
107
- {"shape":"InvalidDeploymentIdException"},
108
- {"shape":"BatchLimitExceededException"}
109
- ]
110
- },
111
- "BatchGetOnPremisesInstances":{
112
- "name":"BatchGetOnPremisesInstances",
113
- "http":{
114
- "method":"POST",
115
- "requestUri":"/"
116
- },
117
- "input":{"shape":"BatchGetOnPremisesInstancesInput"},
118
- "output":{"shape":"BatchGetOnPremisesInstancesOutput"},
119
- "errors":[
120
- {"shape":"InstanceNameRequiredException"},
121
- {"shape":"InvalidInstanceNameException"},
122
- {"shape":"BatchLimitExceededException"}
123
- ]
124
- },
125
- "CreateApplication":{
126
- "name":"CreateApplication",
127
- "http":{
128
- "method":"POST",
129
- "requestUri":"/"
130
- },
131
- "input":{"shape":"CreateApplicationInput"},
132
- "output":{"shape":"CreateApplicationOutput"},
133
- "errors":[
134
- {"shape":"ApplicationNameRequiredException"},
135
- {"shape":"InvalidApplicationNameException"},
136
- {"shape":"ApplicationAlreadyExistsException"},
137
- {"shape":"ApplicationLimitExceededException"}
138
- ]
139
- },
140
- "CreateDeployment":{
141
- "name":"CreateDeployment",
142
- "http":{
143
- "method":"POST",
144
- "requestUri":"/"
145
- },
146
- "input":{"shape":"CreateDeploymentInput"},
147
- "output":{"shape":"CreateDeploymentOutput"},
148
- "errors":[
149
- {"shape":"ApplicationNameRequiredException"},
150
- {"shape":"InvalidApplicationNameException"},
151
- {"shape":"ApplicationDoesNotExistException"},
152
- {"shape":"DeploymentGroupNameRequiredException"},
153
- {"shape":"InvalidDeploymentGroupNameException"},
154
- {"shape":"DeploymentGroupDoesNotExistException"},
155
- {"shape":"RevisionRequiredException"},
156
- {"shape":"InvalidRevisionException"},
157
- {"shape":"InvalidDeploymentConfigNameException"},
158
- {"shape":"DeploymentConfigDoesNotExistException"},
159
- {"shape":"DescriptionTooLongException"},
160
- {"shape":"DeploymentLimitExceededException"}
161
- ]
162
- },
163
- "CreateDeploymentConfig":{
164
- "name":"CreateDeploymentConfig",
165
- "http":{
166
- "method":"POST",
167
- "requestUri":"/"
168
- },
169
- "input":{"shape":"CreateDeploymentConfigInput"},
170
- "output":{"shape":"CreateDeploymentConfigOutput"},
171
- "errors":[
172
- {"shape":"InvalidDeploymentConfigNameException"},
173
- {"shape":"DeploymentConfigNameRequiredException"},
174
- {"shape":"DeploymentConfigAlreadyExistsException"},
175
- {"shape":"InvalidMinimumHealthyHostValueException"},
176
- {"shape":"DeploymentConfigLimitExceededException"}
177
- ]
178
- },
179
- "CreateDeploymentGroup":{
180
- "name":"CreateDeploymentGroup",
181
- "http":{
182
- "method":"POST",
183
- "requestUri":"/"
184
- },
185
- "input":{"shape":"CreateDeploymentGroupInput"},
186
- "output":{"shape":"CreateDeploymentGroupOutput"},
187
- "errors":[
188
- {"shape":"ApplicationNameRequiredException"},
189
- {"shape":"InvalidApplicationNameException"},
190
- {"shape":"ApplicationDoesNotExistException"},
191
- {"shape":"DeploymentGroupNameRequiredException"},
192
- {"shape":"InvalidDeploymentGroupNameException"},
193
- {"shape":"DeploymentGroupAlreadyExistsException"},
194
- {"shape":"InvalidEC2TagException"},
195
- {"shape":"InvalidTagException"},
196
- {"shape":"InvalidAutoScalingGroupException"},
197
- {"shape":"InvalidDeploymentConfigNameException"},
198
- {"shape":"DeploymentConfigDoesNotExistException"},
199
- {"shape":"RoleRequiredException"},
200
- {"shape":"InvalidRoleException"},
201
- {"shape":"DeploymentGroupLimitExceededException"},
202
- {"shape":"LifecycleHookLimitExceededException"},
203
- {"shape":"InvalidTriggerConfigException"},
204
- {"shape":"TriggerTargetsLimitExceededException"}
205
- ]
206
- },
207
- "DeleteApplication":{
208
- "name":"DeleteApplication",
209
- "http":{
210
- "method":"POST",
211
- "requestUri":"/"
212
- },
213
- "input":{"shape":"DeleteApplicationInput"},
214
- "errors":[
215
- {"shape":"ApplicationNameRequiredException"},
216
- {"shape":"InvalidApplicationNameException"}
217
- ]
218
- },
219
- "DeleteDeploymentConfig":{
220
- "name":"DeleteDeploymentConfig",
221
- "http":{
222
- "method":"POST",
223
- "requestUri":"/"
224
- },
225
- "input":{"shape":"DeleteDeploymentConfigInput"},
226
- "errors":[
227
- {"shape":"InvalidDeploymentConfigNameException"},
228
- {"shape":"DeploymentConfigNameRequiredException"},
229
- {"shape":"DeploymentConfigInUseException"},
230
- {"shape":"InvalidOperationException"}
231
- ]
232
- },
233
- "DeleteDeploymentGroup":{
234
- "name":"DeleteDeploymentGroup",
235
- "http":{
236
- "method":"POST",
237
- "requestUri":"/"
238
- },
239
- "input":{"shape":"DeleteDeploymentGroupInput"},
240
- "output":{"shape":"DeleteDeploymentGroupOutput"},
241
- "errors":[
242
- {"shape":"ApplicationNameRequiredException"},
243
- {"shape":"InvalidApplicationNameException"},
244
- {"shape":"DeploymentGroupNameRequiredException"},
245
- {"shape":"InvalidDeploymentGroupNameException"},
246
- {"shape":"InvalidRoleException"}
247
- ]
248
- },
249
- "DeregisterOnPremisesInstance":{
250
- "name":"DeregisterOnPremisesInstance",
251
- "http":{
252
- "method":"POST",
253
- "requestUri":"/"
254
- },
255
- "input":{"shape":"DeregisterOnPremisesInstanceInput"},
256
- "errors":[
257
- {"shape":"InstanceNameRequiredException"},
258
- {"shape":"InvalidInstanceNameException"}
259
- ]
260
- },
261
- "GetApplication":{
262
- "name":"GetApplication",
263
- "http":{
264
- "method":"POST",
265
- "requestUri":"/"
266
- },
267
- "input":{"shape":"GetApplicationInput"},
268
- "output":{"shape":"GetApplicationOutput"},
269
- "errors":[
270
- {"shape":"ApplicationNameRequiredException"},
271
- {"shape":"InvalidApplicationNameException"},
272
- {"shape":"ApplicationDoesNotExistException"}
273
- ]
274
- },
275
- "GetApplicationRevision":{
276
- "name":"GetApplicationRevision",
277
- "http":{
278
- "method":"POST",
279
- "requestUri":"/"
280
- },
281
- "input":{"shape":"GetApplicationRevisionInput"},
282
- "output":{"shape":"GetApplicationRevisionOutput"},
283
- "errors":[
284
- {"shape":"ApplicationDoesNotExistException"},
285
- {"shape":"ApplicationNameRequiredException"},
286
- {"shape":"InvalidApplicationNameException"},
287
- {"shape":"RevisionDoesNotExistException"},
288
- {"shape":"RevisionRequiredException"},
289
- {"shape":"InvalidRevisionException"}
290
- ]
291
- },
292
- "GetDeployment":{
293
- "name":"GetDeployment",
294
- "http":{
295
- "method":"POST",
296
- "requestUri":"/"
297
- },
298
- "input":{"shape":"GetDeploymentInput"},
299
- "output":{"shape":"GetDeploymentOutput"},
300
- "errors":[
301
- {"shape":"DeploymentIdRequiredException"},
302
- {"shape":"InvalidDeploymentIdException"},
303
- {"shape":"DeploymentDoesNotExistException"}
304
- ]
305
- },
306
- "GetDeploymentConfig":{
307
- "name":"GetDeploymentConfig",
308
- "http":{
309
- "method":"POST",
310
- "requestUri":"/"
311
- },
312
- "input":{"shape":"GetDeploymentConfigInput"},
313
- "output":{"shape":"GetDeploymentConfigOutput"},
314
- "errors":[
315
- {"shape":"InvalidDeploymentConfigNameException"},
316
- {"shape":"DeploymentConfigNameRequiredException"},
317
- {"shape":"DeploymentConfigDoesNotExistException"}
318
- ]
319
- },
320
- "GetDeploymentGroup":{
321
- "name":"GetDeploymentGroup",
322
- "http":{
323
- "method":"POST",
324
- "requestUri":"/"
325
- },
326
- "input":{"shape":"GetDeploymentGroupInput"},
327
- "output":{"shape":"GetDeploymentGroupOutput"},
328
- "errors":[
329
- {"shape":"ApplicationNameRequiredException"},
330
- {"shape":"InvalidApplicationNameException"},
331
- {"shape":"ApplicationDoesNotExistException"},
332
- {"shape":"DeploymentGroupNameRequiredException"},
333
- {"shape":"InvalidDeploymentGroupNameException"},
334
- {"shape":"DeploymentGroupDoesNotExistException"}
335
- ]
336
- },
337
- "GetDeploymentInstance":{
338
- "name":"GetDeploymentInstance",
339
- "http":{
340
- "method":"POST",
341
- "requestUri":"/"
342
- },
343
- "input":{"shape":"GetDeploymentInstanceInput"},
344
- "output":{"shape":"GetDeploymentInstanceOutput"},
345
- "errors":[
346
- {"shape":"DeploymentIdRequiredException"},
347
- {"shape":"DeploymentDoesNotExistException"},
348
- {"shape":"InstanceIdRequiredException"},
349
- {"shape":"InvalidDeploymentIdException"},
350
- {"shape":"InstanceDoesNotExistException"},
351
- {"shape":"InvalidInstanceNameException"}
352
- ]
353
- },
354
- "GetOnPremisesInstance":{
355
- "name":"GetOnPremisesInstance",
356
- "http":{
357
- "method":"POST",
358
- "requestUri":"/"
359
- },
360
- "input":{"shape":"GetOnPremisesInstanceInput"},
361
- "output":{"shape":"GetOnPremisesInstanceOutput"},
362
- "errors":[
363
- {"shape":"InstanceNameRequiredException"},
364
- {"shape":"InstanceNotRegisteredException"},
365
- {"shape":"InvalidInstanceNameException"}
366
- ]
367
- },
368
- "ListApplicationRevisions":{
369
- "name":"ListApplicationRevisions",
370
- "http":{
371
- "method":"POST",
372
- "requestUri":"/"
373
- },
374
- "input":{"shape":"ListApplicationRevisionsInput"},
375
- "output":{"shape":"ListApplicationRevisionsOutput"},
376
- "errors":[
377
- {"shape":"ApplicationDoesNotExistException"},
378
- {"shape":"ApplicationNameRequiredException"},
379
- {"shape":"InvalidApplicationNameException"},
380
- {"shape":"InvalidSortByException"},
381
- {"shape":"InvalidSortOrderException"},
382
- {"shape":"InvalidBucketNameFilterException"},
383
- {"shape":"InvalidKeyPrefixFilterException"},
384
- {"shape":"BucketNameFilterRequiredException"},
385
- {"shape":"InvalidDeployedStateFilterException"},
386
- {"shape":"InvalidNextTokenException"}
387
- ]
388
- },
389
- "ListApplications":{
390
- "name":"ListApplications",
391
- "http":{
392
- "method":"POST",
393
- "requestUri":"/"
394
- },
395
- "input":{"shape":"ListApplicationsInput"},
396
- "output":{"shape":"ListApplicationsOutput"},
397
- "errors":[
398
- {"shape":"InvalidNextTokenException"}
399
- ]
400
- },
401
- "ListDeploymentConfigs":{
402
- "name":"ListDeploymentConfigs",
403
- "http":{
404
- "method":"POST",
405
- "requestUri":"/"
406
- },
407
- "input":{"shape":"ListDeploymentConfigsInput"},
408
- "output":{"shape":"ListDeploymentConfigsOutput"},
409
- "errors":[
410
- {"shape":"InvalidNextTokenException"}
411
- ]
412
- },
413
- "ListDeploymentGroups":{
414
- "name":"ListDeploymentGroups",
415
- "http":{
416
- "method":"POST",
417
- "requestUri":"/"
418
- },
419
- "input":{"shape":"ListDeploymentGroupsInput"},
420
- "output":{"shape":"ListDeploymentGroupsOutput"},
421
- "errors":[
422
- {"shape":"ApplicationNameRequiredException"},
423
- {"shape":"InvalidApplicationNameException"},
424
- {"shape":"ApplicationDoesNotExistException"},
425
- {"shape":"InvalidNextTokenException"}
426
- ]
427
- },
428
- "ListDeploymentInstances":{
429
- "name":"ListDeploymentInstances",
430
- "http":{
431
- "method":"POST",
432
- "requestUri":"/"
433
- },
434
- "input":{"shape":"ListDeploymentInstancesInput"},
435
- "output":{"shape":"ListDeploymentInstancesOutput"},
436
- "errors":[
437
- {"shape":"DeploymentIdRequiredException"},
438
- {"shape":"DeploymentDoesNotExistException"},
439
- {"shape":"DeploymentNotStartedException"},
440
- {"shape":"InvalidNextTokenException"},
441
- {"shape":"InvalidDeploymentIdException"},
442
- {"shape":"InvalidInstanceStatusException"}
443
- ]
444
- },
445
- "ListDeployments":{
446
- "name":"ListDeployments",
447
- "http":{
448
- "method":"POST",
449
- "requestUri":"/"
450
- },
451
- "input":{"shape":"ListDeploymentsInput"},
452
- "output":{"shape":"ListDeploymentsOutput"},
453
- "errors":[
454
- {"shape":"ApplicationNameRequiredException"},
455
- {"shape":"InvalidApplicationNameException"},
456
- {"shape":"ApplicationDoesNotExistException"},
457
- {"shape":"InvalidDeploymentGroupNameException"},
458
- {"shape":"DeploymentGroupDoesNotExistException"},
459
- {"shape":"DeploymentGroupNameRequiredException"},
460
- {"shape":"InvalidTimeRangeException"},
461
- {"shape":"InvalidDeploymentStatusException"},
462
- {"shape":"InvalidNextTokenException"}
463
- ]
464
- },
465
- "ListOnPremisesInstances":{
466
- "name":"ListOnPremisesInstances",
467
- "http":{
468
- "method":"POST",
469
- "requestUri":"/"
470
- },
471
- "input":{"shape":"ListOnPremisesInstancesInput"},
472
- "output":{"shape":"ListOnPremisesInstancesOutput"},
473
- "errors":[
474
- {"shape":"InvalidRegistrationStatusException"},
475
- {"shape":"InvalidTagFilterException"},
476
- {"shape":"InvalidNextTokenException"}
477
- ]
478
- },
479
- "RegisterApplicationRevision":{
480
- "name":"RegisterApplicationRevision",
481
- "http":{
482
- "method":"POST",
483
- "requestUri":"/"
484
- },
485
- "input":{"shape":"RegisterApplicationRevisionInput"},
486
- "errors":[
487
- {"shape":"ApplicationDoesNotExistException"},
488
- {"shape":"ApplicationNameRequiredException"},
489
- {"shape":"InvalidApplicationNameException"},
490
- {"shape":"DescriptionTooLongException"},
491
- {"shape":"RevisionRequiredException"},
492
- {"shape":"InvalidRevisionException"}
493
- ]
494
- },
495
- "RegisterOnPremisesInstance":{
496
- "name":"RegisterOnPremisesInstance",
497
- "http":{
498
- "method":"POST",
499
- "requestUri":"/"
500
- },
501
- "input":{"shape":"RegisterOnPremisesInstanceInput"},
502
- "errors":[
503
- {"shape":"InstanceNameAlreadyRegisteredException"},
504
- {"shape":"IamUserArnAlreadyRegisteredException"},
505
- {"shape":"InstanceNameRequiredException"},
506
- {"shape":"IamUserArnRequiredException"},
507
- {"shape":"InvalidInstanceNameException"},
508
- {"shape":"InvalidIamUserArnException"}
509
- ]
510
- },
511
- "RemoveTagsFromOnPremisesInstances":{
512
- "name":"RemoveTagsFromOnPremisesInstances",
513
- "http":{
514
- "method":"POST",
515
- "requestUri":"/"
516
- },
517
- "input":{"shape":"RemoveTagsFromOnPremisesInstancesInput"},
518
- "errors":[
519
- {"shape":"InstanceNameRequiredException"},
520
- {"shape":"TagRequiredException"},
521
- {"shape":"InvalidTagException"},
522
- {"shape":"TagLimitExceededException"},
523
- {"shape":"InstanceLimitExceededException"},
524
- {"shape":"InstanceNotRegisteredException"}
525
- ]
526
- },
527
- "StopDeployment":{
528
- "name":"StopDeployment",
529
- "http":{
530
- "method":"POST",
531
- "requestUri":"/"
532
- },
533
- "input":{"shape":"StopDeploymentInput"},
534
- "output":{"shape":"StopDeploymentOutput"},
535
- "errors":[
536
- {"shape":"DeploymentIdRequiredException"},
537
- {"shape":"DeploymentDoesNotExistException"},
538
- {"shape":"DeploymentAlreadyCompletedException"},
539
- {"shape":"InvalidDeploymentIdException"}
540
- ]
541
- },
542
- "UpdateApplication":{
543
- "name":"UpdateApplication",
544
- "http":{
545
- "method":"POST",
546
- "requestUri":"/"
547
- },
548
- "input":{"shape":"UpdateApplicationInput"},
549
- "errors":[
550
- {"shape":"ApplicationNameRequiredException"},
551
- {"shape":"InvalidApplicationNameException"},
552
- {"shape":"ApplicationAlreadyExistsException"},
553
- {"shape":"ApplicationDoesNotExistException"}
554
- ]
555
- },
556
- "UpdateDeploymentGroup":{
557
- "name":"UpdateDeploymentGroup",
558
- "http":{
559
- "method":"POST",
560
- "requestUri":"/"
561
- },
562
- "input":{"shape":"UpdateDeploymentGroupInput"},
563
- "output":{"shape":"UpdateDeploymentGroupOutput"},
564
- "errors":[
565
- {"shape":"ApplicationNameRequiredException"},
566
- {"shape":"InvalidApplicationNameException"},
567
- {"shape":"ApplicationDoesNotExistException"},
568
- {"shape":"InvalidDeploymentGroupNameException"},
569
- {"shape":"DeploymentGroupAlreadyExistsException"},
570
- {"shape":"DeploymentGroupNameRequiredException"},
571
- {"shape":"DeploymentGroupDoesNotExistException"},
572
- {"shape":"InvalidEC2TagException"},
573
- {"shape":"InvalidTagException"},
574
- {"shape":"InvalidAutoScalingGroupException"},
575
- {"shape":"InvalidDeploymentConfigNameException"},
576
- {"shape":"DeploymentConfigDoesNotExistException"},
577
- {"shape":"InvalidRoleException"},
578
- {"shape":"LifecycleHookLimitExceededException"},
579
- {"shape":"InvalidTriggerConfigException"},
580
- {"shape":"TriggerTargetsLimitExceededException"}
581
- ]
582
- }
583
- },
584
- "shapes":{
585
- "AddTagsToOnPremisesInstancesInput":{
586
- "type":"structure",
587
- "required":[
588
- "tags",
589
- "instanceNames"
590
- ],
591
- "members":{
592
- "tags":{"shape":"TagList"},
593
- "instanceNames":{"shape":"InstanceNameList"}
594
- }
595
- },
596
- "ApplicationAlreadyExistsException":{
597
- "type":"structure",
598
- "members":{
599
- },
600
- "exception":true
601
- },
602
- "ApplicationDoesNotExistException":{
603
- "type":"structure",
604
- "members":{
605
- },
606
- "exception":true
607
- },
608
- "ApplicationId":{"type":"string"},
609
- "ApplicationInfo":{
610
- "type":"structure",
611
- "members":{
612
- "applicationId":{"shape":"ApplicationId"},
613
- "applicationName":{"shape":"ApplicationName"},
614
- "createTime":{"shape":"Timestamp"},
615
- "linkedToGitHub":{"shape":"Boolean"}
616
- }
617
- },
618
- "ApplicationLimitExceededException":{
619
- "type":"structure",
620
- "members":{
621
- },
622
- "exception":true
623
- },
624
- "ApplicationName":{
625
- "type":"string",
626
- "max":100,
627
- "min":1
628
- },
629
- "ApplicationNameRequiredException":{
630
- "type":"structure",
631
- "members":{
632
- },
633
- "exception":true
634
- },
635
- "ApplicationRevisionSortBy":{
636
- "type":"string",
637
- "enum":[
638
- "registerTime",
639
- "firstUsedTime",
640
- "lastUsedTime"
641
- ]
642
- },
643
- "ApplicationsInfoList":{
644
- "type":"list",
645
- "member":{"shape":"ApplicationInfo"}
646
- },
647
- "ApplicationsList":{
648
- "type":"list",
649
- "member":{"shape":"ApplicationName"}
650
- },
651
- "AutoScalingGroup":{
652
- "type":"structure",
653
- "members":{
654
- "name":{"shape":"AutoScalingGroupName"},
655
- "hook":{"shape":"AutoScalingGroupHook"}
656
- }
657
- },
658
- "AutoScalingGroupHook":{"type":"string"},
659
- "AutoScalingGroupList":{
660
- "type":"list",
661
- "member":{"shape":"AutoScalingGroup"}
662
- },
663
- "AutoScalingGroupName":{"type":"string"},
664
- "AutoScalingGroupNameList":{
665
- "type":"list",
666
- "member":{"shape":"AutoScalingGroupName"}
667
- },
668
- "BatchGetApplicationRevisionsInput":{
669
- "type":"structure",
670
- "required":[
671
- "applicationName",
672
- "revisions"
673
- ],
674
- "members":{
675
- "applicationName":{"shape":"ApplicationName"},
676
- "revisions":{"shape":"RevisionLocationList"}
677
- }
678
- },
679
- "BatchGetApplicationRevisionsOutput":{
680
- "type":"structure",
681
- "members":{
682
- "applicationName":{"shape":"ApplicationName"},
683
- "errorMessage":{"shape":"ErrorMessage"},
684
- "revisions":{"shape":"RevisionInfoList"}
685
- }
686
- },
687
- "BatchGetApplicationsInput":{
688
- "type":"structure",
689
- "members":{
690
- "applicationNames":{"shape":"ApplicationsList"}
691
- }
692
- },
693
- "BatchGetApplicationsOutput":{
694
- "type":"structure",
695
- "members":{
696
- "applicationsInfo":{"shape":"ApplicationsInfoList"}
697
- }
698
- },
699
- "BatchGetDeploymentGroupsInput":{
700
- "type":"structure",
701
- "required":[
702
- "applicationName",
703
- "deploymentGroupNames"
704
- ],
705
- "members":{
706
- "applicationName":{"shape":"ApplicationName"},
707
- "deploymentGroupNames":{"shape":"DeploymentGroupsList"}
708
- }
709
- },
710
- "BatchGetDeploymentGroupsOutput":{
711
- "type":"structure",
712
- "members":{
713
- "deploymentGroupsInfo":{"shape":"DeploymentGroupInfoList"},
714
- "errorMessage":{"shape":"ErrorMessage"}
715
- }
716
- },
717
- "BatchGetDeploymentInstancesInput":{
718
- "type":"structure",
719
- "required":[
720
- "deploymentId",
721
- "instanceIds"
722
- ],
723
- "members":{
724
- "deploymentId":{"shape":"DeploymentId"},
725
- "instanceIds":{"shape":"InstancesList"}
726
- }
727
- },
728
- "BatchGetDeploymentInstancesOutput":{
729
- "type":"structure",
730
- "members":{
731
- "instancesSummary":{"shape":"InstanceSummaryList"},
732
- "errorMessage":{"shape":"ErrorMessage"}
733
- }
734
- },
735
- "BatchGetDeploymentsInput":{
736
- "type":"structure",
737
- "members":{
738
- "deploymentIds":{"shape":"DeploymentsList"}
739
- }
740
- },
741
- "BatchGetDeploymentsOutput":{
742
- "type":"structure",
743
- "members":{
744
- "deploymentsInfo":{"shape":"DeploymentsInfoList"}
745
- }
746
- },
747
- "BatchGetOnPremisesInstancesInput":{
748
- "type":"structure",
749
- "members":{
750
- "instanceNames":{"shape":"InstanceNameList"}
751
- }
752
- },
753
- "BatchGetOnPremisesInstancesOutput":{
754
- "type":"structure",
755
- "members":{
756
- "instanceInfos":{"shape":"InstanceInfoList"}
757
- }
758
- },
759
- "BatchLimitExceededException":{
760
- "type":"structure",
761
- "members":{
762
- },
763
- "exception":true
764
- },
765
- "Boolean":{"type":"boolean"},
766
- "BucketNameFilterRequiredException":{
767
- "type":"structure",
768
- "members":{
769
- },
770
- "exception":true
771
- },
772
- "BundleType":{
773
- "type":"string",
774
- "enum":[
775
- "tar",
776
- "tgz",
777
- "zip"
778
- ]
779
- },
780
- "CommitId":{"type":"string"},
781
- "CreateApplicationInput":{
782
- "type":"structure",
783
- "required":["applicationName"],
784
- "members":{
785
- "applicationName":{"shape":"ApplicationName"}
786
- }
787
- },
788
- "CreateApplicationOutput":{
789
- "type":"structure",
790
- "members":{
791
- "applicationId":{"shape":"ApplicationId"}
792
- }
793
- },
794
- "CreateDeploymentConfigInput":{
795
- "type":"structure",
796
- "required":["deploymentConfigName"],
797
- "members":{
798
- "deploymentConfigName":{"shape":"DeploymentConfigName"},
799
- "minimumHealthyHosts":{"shape":"MinimumHealthyHosts"}
800
- }
801
- },
802
- "CreateDeploymentConfigOutput":{
803
- "type":"structure",
804
- "members":{
805
- "deploymentConfigId":{"shape":"DeploymentConfigId"}
806
- }
807
- },
808
- "CreateDeploymentGroupInput":{
809
- "type":"structure",
810
- "required":[
811
- "applicationName",
812
- "deploymentGroupName",
813
- "serviceRoleArn"
814
- ],
815
- "members":{
816
- "applicationName":{"shape":"ApplicationName"},
817
- "deploymentGroupName":{"shape":"DeploymentGroupName"},
818
- "deploymentConfigName":{"shape":"DeploymentConfigName"},
819
- "ec2TagFilters":{"shape":"EC2TagFilterList"},
820
- "onPremisesInstanceTagFilters":{"shape":"TagFilterList"},
821
- "autoScalingGroups":{"shape":"AutoScalingGroupNameList"},
822
- "serviceRoleArn":{"shape":"Role"},
823
- "triggerConfigurations":{"shape":"TriggerConfigList"}
824
- }
825
- },
826
- "CreateDeploymentGroupOutput":{
827
- "type":"structure",
828
- "members":{
829
- "deploymentGroupId":{"shape":"DeploymentGroupId"}
830
- }
831
- },
832
- "CreateDeploymentInput":{
833
- "type":"structure",
834
- "required":["applicationName"],
835
- "members":{
836
- "applicationName":{"shape":"ApplicationName"},
837
- "deploymentGroupName":{"shape":"DeploymentGroupName"},
838
- "revision":{"shape":"RevisionLocation"},
839
- "deploymentConfigName":{"shape":"DeploymentConfigName"},
840
- "description":{"shape":"Description"},
841
- "ignoreApplicationStopFailures":{"shape":"Boolean"}
842
- }
843
- },
844
- "CreateDeploymentOutput":{
845
- "type":"structure",
846
- "members":{
847
- "deploymentId":{"shape":"DeploymentId"}
848
- }
849
- },
850
- "DeleteApplicationInput":{
851
- "type":"structure",
852
- "required":["applicationName"],
853
- "members":{
854
- "applicationName":{"shape":"ApplicationName"}
855
- }
856
- },
857
- "DeleteDeploymentConfigInput":{
858
- "type":"structure",
859
- "required":["deploymentConfigName"],
860
- "members":{
861
- "deploymentConfigName":{"shape":"DeploymentConfigName"}
862
- }
863
- },
864
- "DeleteDeploymentGroupInput":{
865
- "type":"structure",
866
- "required":[
867
- "applicationName",
868
- "deploymentGroupName"
869
- ],
870
- "members":{
871
- "applicationName":{"shape":"ApplicationName"},
872
- "deploymentGroupName":{"shape":"DeploymentGroupName"}
873
- }
874
- },
875
- "DeleteDeploymentGroupOutput":{
876
- "type":"structure",
877
- "members":{
878
- "hooksNotCleanedUp":{"shape":"AutoScalingGroupList"}
879
- }
880
- },
881
- "DeploymentAlreadyCompletedException":{
882
- "type":"structure",
883
- "members":{
884
- },
885
- "exception":true
886
- },
887
- "DeploymentConfigAlreadyExistsException":{
888
- "type":"structure",
889
- "members":{
890
- },
891
- "exception":true
892
- },
893
- "DeploymentConfigDoesNotExistException":{
894
- "type":"structure",
895
- "members":{
896
- },
897
- "exception":true
898
- },
899
- "DeploymentConfigId":{"type":"string"},
900
- "DeploymentConfigInUseException":{
901
- "type":"structure",
902
- "members":{
903
- },
904
- "exception":true
905
- },
906
- "DeploymentConfigInfo":{
907
- "type":"structure",
908
- "members":{
909
- "deploymentConfigId":{"shape":"DeploymentConfigId"},
910
- "deploymentConfigName":{"shape":"DeploymentConfigName"},
911
- "minimumHealthyHosts":{"shape":"MinimumHealthyHosts"},
912
- "createTime":{"shape":"Timestamp"}
913
- }
914
- },
915
- "DeploymentConfigLimitExceededException":{
916
- "type":"structure",
917
- "members":{
918
- },
919
- "exception":true
920
- },
921
- "DeploymentConfigName":{
922
- "type":"string",
923
- "max":100,
924
- "min":1
925
- },
926
- "DeploymentConfigNameRequiredException":{
927
- "type":"structure",
928
- "members":{
929
- },
930
- "exception":true
931
- },
932
- "DeploymentConfigsList":{
933
- "type":"list",
934
- "member":{"shape":"DeploymentConfigName"}
935
- },
936
- "DeploymentCreator":{
937
- "type":"string",
938
- "enum":[
939
- "user",
940
- "autoscaling"
941
- ]
942
- },
943
- "DeploymentDoesNotExistException":{
944
- "type":"structure",
945
- "members":{
946
- },
947
- "exception":true
948
- },
949
- "DeploymentGroupAlreadyExistsException":{
950
- "type":"structure",
951
- "members":{
952
- },
953
- "exception":true
954
- },
955
- "DeploymentGroupDoesNotExistException":{
956
- "type":"structure",
957
- "members":{
958
- },
959
- "exception":true
960
- },
961
- "DeploymentGroupId":{"type":"string"},
962
- "DeploymentGroupInfo":{
963
- "type":"structure",
964
- "members":{
965
- "applicationName":{"shape":"ApplicationName"},
966
- "deploymentGroupId":{"shape":"DeploymentGroupId"},
967
- "deploymentGroupName":{"shape":"DeploymentGroupName"},
968
- "deploymentConfigName":{"shape":"DeploymentConfigName"},
969
- "ec2TagFilters":{"shape":"EC2TagFilterList"},
970
- "onPremisesInstanceTagFilters":{"shape":"TagFilterList"},
971
- "autoScalingGroups":{"shape":"AutoScalingGroupList"},
972
- "serviceRoleArn":{"shape":"Role"},
973
- "targetRevision":{"shape":"RevisionLocation"},
974
- "triggerConfigurations":{"shape":"TriggerConfigList"}
975
- }
976
- },
977
- "DeploymentGroupInfoList":{
978
- "type":"list",
979
- "member":{"shape":"DeploymentGroupInfo"}
980
- },
981
- "DeploymentGroupLimitExceededException":{
982
- "type":"structure",
983
- "members":{
984
- },
985
- "exception":true
986
- },
987
- "DeploymentGroupName":{
988
- "type":"string",
989
- "max":100,
990
- "min":1
991
- },
992
- "DeploymentGroupNameRequiredException":{
993
- "type":"structure",
994
- "members":{
995
- },
996
- "exception":true
997
- },
998
- "DeploymentGroupsList":{
999
- "type":"list",
1000
- "member":{"shape":"DeploymentGroupName"}
1001
- },
1002
- "DeploymentId":{"type":"string"},
1003
- "DeploymentIdRequiredException":{
1004
- "type":"structure",
1005
- "members":{
1006
- },
1007
- "exception":true
1008
- },
1009
- "DeploymentInfo":{
1010
- "type":"structure",
1011
- "members":{
1012
- "applicationName":{"shape":"ApplicationName"},
1013
- "deploymentGroupName":{"shape":"DeploymentGroupName"},
1014
- "deploymentConfigName":{"shape":"DeploymentConfigName"},
1015
- "deploymentId":{"shape":"DeploymentId"},
1016
- "revision":{"shape":"RevisionLocation"},
1017
- "status":{"shape":"DeploymentStatus"},
1018
- "errorInformation":{"shape":"ErrorInformation"},
1019
- "createTime":{"shape":"Timestamp"},
1020
- "startTime":{"shape":"Timestamp"},
1021
- "completeTime":{"shape":"Timestamp"},
1022
- "deploymentOverview":{"shape":"DeploymentOverview"},
1023
- "description":{"shape":"Description"},
1024
- "creator":{"shape":"DeploymentCreator"},
1025
- "ignoreApplicationStopFailures":{"shape":"Boolean"}
1026
- }
1027
- },
1028
- "DeploymentLimitExceededException":{
1029
- "type":"structure",
1030
- "members":{
1031
- },
1032
- "exception":true
1033
- },
1034
- "DeploymentNotStartedException":{
1035
- "type":"structure",
1036
- "members":{
1037
- },
1038
- "exception":true
1039
- },
1040
- "DeploymentOverview":{
1041
- "type":"structure",
1042
- "members":{
1043
- "Pending":{"shape":"InstanceCount"},
1044
- "InProgress":{"shape":"InstanceCount"},
1045
- "Succeeded":{"shape":"InstanceCount"},
1046
- "Failed":{"shape":"InstanceCount"},
1047
- "Skipped":{"shape":"InstanceCount"}
1048
- }
1049
- },
1050
- "DeploymentStatus":{
1051
- "type":"string",
1052
- "enum":[
1053
- "Created",
1054
- "Queued",
1055
- "InProgress",
1056
- "Succeeded",
1057
- "Failed",
1058
- "Stopped"
1059
- ]
1060
- },
1061
- "DeploymentStatusList":{
1062
- "type":"list",
1063
- "member":{"shape":"DeploymentStatus"}
1064
- },
1065
- "DeploymentsInfoList":{
1066
- "type":"list",
1067
- "member":{"shape":"DeploymentInfo"}
1068
- },
1069
- "DeploymentsList":{
1070
- "type":"list",
1071
- "member":{"shape":"DeploymentId"}
1072
- },
1073
- "DeregisterOnPremisesInstanceInput":{
1074
- "type":"structure",
1075
- "required":["instanceName"],
1076
- "members":{
1077
- "instanceName":{"shape":"InstanceName"}
1078
- }
1079
- },
1080
- "Description":{"type":"string"},
1081
- "DescriptionTooLongException":{
1082
- "type":"structure",
1083
- "members":{
1084
- },
1085
- "exception":true
1086
- },
1087
- "Diagnostics":{
1088
- "type":"structure",
1089
- "members":{
1090
- "errorCode":{"shape":"LifecycleErrorCode"},
1091
- "scriptName":{"shape":"ScriptName"},
1092
- "message":{"shape":"LifecycleMessage"},
1093
- "logTail":{"shape":"LogTail"}
1094
- }
1095
- },
1096
- "EC2TagFilter":{
1097
- "type":"structure",
1098
- "members":{
1099
- "Key":{"shape":"Key"},
1100
- "Value":{"shape":"Value"},
1101
- "Type":{"shape":"EC2TagFilterType"}
1102
- }
1103
- },
1104
- "EC2TagFilterList":{
1105
- "type":"list",
1106
- "member":{"shape":"EC2TagFilter"}
1107
- },
1108
- "EC2TagFilterType":{
1109
- "type":"string",
1110
- "enum":[
1111
- "KEY_ONLY",
1112
- "VALUE_ONLY",
1113
- "KEY_AND_VALUE"
1114
- ]
1115
- },
1116
- "ETag":{"type":"string"},
1117
- "ErrorCode":{
1118
- "type":"string",
1119
- "enum":[
1120
- "DEPLOYMENT_GROUP_MISSING",
1121
- "APPLICATION_MISSING",
1122
- "REVISION_MISSING",
1123
- "IAM_ROLE_MISSING",
1124
- "IAM_ROLE_PERMISSIONS",
1125
- "NO_EC2_SUBSCRIPTION",
1126
- "OVER_MAX_INSTANCES",
1127
- "NO_INSTANCES",
1128
- "TIMEOUT",
1129
- "HEALTH_CONSTRAINTS_INVALID",
1130
- "HEALTH_CONSTRAINTS",
1131
- "INTERNAL_ERROR",
1132
- "THROTTLED"
1133
- ]
1134
- },
1135
- "ErrorInformation":{
1136
- "type":"structure",
1137
- "members":{
1138
- "code":{"shape":"ErrorCode"},
1139
- "message":{"shape":"ErrorMessage"}
1140
- }
1141
- },
1142
- "ErrorMessage":{"type":"string"},
1143
- "GenericRevisionInfo":{
1144
- "type":"structure",
1145
- "members":{
1146
- "description":{"shape":"Description"},
1147
- "deploymentGroups":{"shape":"DeploymentGroupsList"},
1148
- "firstUsedTime":{"shape":"Timestamp"},
1149
- "lastUsedTime":{"shape":"Timestamp"},
1150
- "registerTime":{"shape":"Timestamp"}
1151
- }
1152
- },
1153
- "GetApplicationInput":{
1154
- "type":"structure",
1155
- "required":["applicationName"],
1156
- "members":{
1157
- "applicationName":{"shape":"ApplicationName"}
1158
- }
1159
- },
1160
- "GetApplicationOutput":{
1161
- "type":"structure",
1162
- "members":{
1163
- "application":{"shape":"ApplicationInfo"}
1164
- }
1165
- },
1166
- "GetApplicationRevisionInput":{
1167
- "type":"structure",
1168
- "required":[
1169
- "applicationName",
1170
- "revision"
1171
- ],
1172
- "members":{
1173
- "applicationName":{"shape":"ApplicationName"},
1174
- "revision":{"shape":"RevisionLocation"}
1175
- }
1176
- },
1177
- "GetApplicationRevisionOutput":{
1178
- "type":"structure",
1179
- "members":{
1180
- "applicationName":{"shape":"ApplicationName"},
1181
- "revision":{"shape":"RevisionLocation"},
1182
- "revisionInfo":{"shape":"GenericRevisionInfo"}
1183
- }
1184
- },
1185
- "GetDeploymentConfigInput":{
1186
- "type":"structure",
1187
- "required":["deploymentConfigName"],
1188
- "members":{
1189
- "deploymentConfigName":{"shape":"DeploymentConfigName"}
1190
- }
1191
- },
1192
- "GetDeploymentConfigOutput":{
1193
- "type":"structure",
1194
- "members":{
1195
- "deploymentConfigInfo":{"shape":"DeploymentConfigInfo"}
1196
- }
1197
- },
1198
- "GetDeploymentGroupInput":{
1199
- "type":"structure",
1200
- "required":[
1201
- "applicationName",
1202
- "deploymentGroupName"
1203
- ],
1204
- "members":{
1205
- "applicationName":{"shape":"ApplicationName"},
1206
- "deploymentGroupName":{"shape":"DeploymentGroupName"}
1207
- }
1208
- },
1209
- "GetDeploymentGroupOutput":{
1210
- "type":"structure",
1211
- "members":{
1212
- "deploymentGroupInfo":{"shape":"DeploymentGroupInfo"}
1213
- }
1214
- },
1215
- "GetDeploymentInput":{
1216
- "type":"structure",
1217
- "required":["deploymentId"],
1218
- "members":{
1219
- "deploymentId":{"shape":"DeploymentId"}
1220
- }
1221
- },
1222
- "GetDeploymentInstanceInput":{
1223
- "type":"structure",
1224
- "required":[
1225
- "deploymentId",
1226
- "instanceId"
1227
- ],
1228
- "members":{
1229
- "deploymentId":{"shape":"DeploymentId"},
1230
- "instanceId":{"shape":"InstanceId"}
1231
- }
1232
- },
1233
- "GetDeploymentInstanceOutput":{
1234
- "type":"structure",
1235
- "members":{
1236
- "instanceSummary":{"shape":"InstanceSummary"}
1237
- }
1238
- },
1239
- "GetDeploymentOutput":{
1240
- "type":"structure",
1241
- "members":{
1242
- "deploymentInfo":{"shape":"DeploymentInfo"}
1243
- }
1244
- },
1245
- "GetOnPremisesInstanceInput":{
1246
- "type":"structure",
1247
- "required":["instanceName"],
1248
- "members":{
1249
- "instanceName":{"shape":"InstanceName"}
1250
- }
1251
- },
1252
- "GetOnPremisesInstanceOutput":{
1253
- "type":"structure",
1254
- "members":{
1255
- "instanceInfo":{"shape":"InstanceInfo"}
1256
- }
1257
- },
1258
- "GitHubLocation":{
1259
- "type":"structure",
1260
- "members":{
1261
- "repository":{"shape":"Repository"},
1262
- "commitId":{"shape":"CommitId"}
1263
- }
1264
- },
1265
- "IamUserArn":{"type":"string"},
1266
- "IamUserArnAlreadyRegisteredException":{
1267
- "type":"structure",
1268
- "members":{
1269
- },
1270
- "exception":true
1271
- },
1272
- "IamUserArnRequiredException":{
1273
- "type":"structure",
1274
- "members":{
1275
- },
1276
- "exception":true
1277
- },
1278
- "InstanceArn":{"type":"string"},
1279
- "InstanceCount":{"type":"long"},
1280
- "InstanceDoesNotExistException":{
1281
- "type":"structure",
1282
- "members":{
1283
- },
1284
- "exception":true
1285
- },
1286
- "InstanceId":{"type":"string"},
1287
- "InstanceIdRequiredException":{
1288
- "type":"structure",
1289
- "members":{
1290
- },
1291
- "exception":true
1292
- },
1293
- "InstanceInfo":{
1294
- "type":"structure",
1295
- "members":{
1296
- "instanceName":{"shape":"InstanceName"},
1297
- "iamUserArn":{"shape":"IamUserArn"},
1298
- "instanceArn":{"shape":"InstanceArn"},
1299
- "registerTime":{"shape":"Timestamp"},
1300
- "deregisterTime":{"shape":"Timestamp"},
1301
- "tags":{"shape":"TagList"}
1302
- }
1303
- },
1304
- "InstanceInfoList":{
1305
- "type":"list",
1306
- "member":{"shape":"InstanceInfo"}
1307
- },
1308
- "InstanceLimitExceededException":{
1309
- "type":"structure",
1310
- "members":{
1311
- },
1312
- "exception":true
1313
- },
1314
- "InstanceName":{"type":"string"},
1315
- "InstanceNameAlreadyRegisteredException":{
1316
- "type":"structure",
1317
- "members":{
1318
- },
1319
- "exception":true
1320
- },
1321
- "InstanceNameList":{
1322
- "type":"list",
1323
- "member":{"shape":"InstanceName"}
1324
- },
1325
- "InstanceNameRequiredException":{
1326
- "type":"structure",
1327
- "members":{
1328
- },
1329
- "exception":true
1330
- },
1331
- "InstanceNotRegisteredException":{
1332
- "type":"structure",
1333
- "members":{
1334
- },
1335
- "exception":true
1336
- },
1337
- "InstanceStatus":{
1338
- "type":"string",
1339
- "enum":[
1340
- "Pending",
1341
- "InProgress",
1342
- "Succeeded",
1343
- "Failed",
1344
- "Skipped",
1345
- "Unknown"
1346
- ]
1347
- },
1348
- "InstanceStatusList":{
1349
- "type":"list",
1350
- "member":{"shape":"InstanceStatus"}
1351
- },
1352
- "InstanceSummary":{
1353
- "type":"structure",
1354
- "members":{
1355
- "deploymentId":{"shape":"DeploymentId"},
1356
- "instanceId":{"shape":"InstanceId"},
1357
- "status":{"shape":"InstanceStatus"},
1358
- "lastUpdatedAt":{"shape":"Timestamp"},
1359
- "lifecycleEvents":{"shape":"LifecycleEventList"}
1360
- }
1361
- },
1362
- "InstanceSummaryList":{
1363
- "type":"list",
1364
- "member":{"shape":"InstanceSummary"}
1365
- },
1366
- "InstancesList":{
1367
- "type":"list",
1368
- "member":{"shape":"InstanceId"}
1369
- },
1370
- "InvalidApplicationNameException":{
1371
- "type":"structure",
1372
- "members":{
1373
- },
1374
- "exception":true
1375
- },
1376
- "InvalidAutoScalingGroupException":{
1377
- "type":"structure",
1378
- "members":{
1379
- },
1380
- "exception":true
1381
- },
1382
- "InvalidBucketNameFilterException":{
1383
- "type":"structure",
1384
- "members":{
1385
- },
1386
- "exception":true
1387
- },
1388
- "InvalidDeployedStateFilterException":{
1389
- "type":"structure",
1390
- "members":{
1391
- },
1392
- "exception":true
1393
- },
1394
- "InvalidDeploymentConfigNameException":{
1395
- "type":"structure",
1396
- "members":{
1397
- },
1398
- "exception":true
1399
- },
1400
- "InvalidDeploymentGroupNameException":{
1401
- "type":"structure",
1402
- "members":{
1403
- },
1404
- "exception":true
1405
- },
1406
- "InvalidDeploymentIdException":{
1407
- "type":"structure",
1408
- "members":{
1409
- },
1410
- "exception":true
1411
- },
1412
- "InvalidDeploymentStatusException":{
1413
- "type":"structure",
1414
- "members":{
1415
- },
1416
- "exception":true
1417
- },
1418
- "InvalidEC2TagException":{
1419
- "type":"structure",
1420
- "members":{
1421
- },
1422
- "exception":true
1423
- },
1424
- "InvalidIamUserArnException":{
1425
- "type":"structure",
1426
- "members":{
1427
- },
1428
- "exception":true
1429
- },
1430
- "InvalidInstanceNameException":{
1431
- "type":"structure",
1432
- "members":{
1433
- },
1434
- "exception":true
1435
- },
1436
- "InvalidInstanceStatusException":{
1437
- "type":"structure",
1438
- "members":{
1439
- },
1440
- "exception":true
1441
- },
1442
- "InvalidKeyPrefixFilterException":{
1443
- "type":"structure",
1444
- "members":{
1445
- },
1446
- "exception":true
1447
- },
1448
- "InvalidMinimumHealthyHostValueException":{
1449
- "type":"structure",
1450
- "members":{
1451
- },
1452
- "exception":true
1453
- },
1454
- "InvalidNextTokenException":{
1455
- "type":"structure",
1456
- "members":{
1457
- },
1458
- "exception":true
1459
- },
1460
- "InvalidOperationException":{
1461
- "type":"structure",
1462
- "members":{
1463
- },
1464
- "exception":true
1465
- },
1466
- "InvalidRegistrationStatusException":{
1467
- "type":"structure",
1468
- "members":{
1469
- },
1470
- "exception":true
1471
- },
1472
- "InvalidRevisionException":{
1473
- "type":"structure",
1474
- "members":{
1475
- },
1476
- "exception":true
1477
- },
1478
- "InvalidRoleException":{
1479
- "type":"structure",
1480
- "members":{
1481
- },
1482
- "exception":true
1483
- },
1484
- "InvalidSortByException":{
1485
- "type":"structure",
1486
- "members":{
1487
- },
1488
- "exception":true
1489
- },
1490
- "InvalidSortOrderException":{
1491
- "type":"structure",
1492
- "members":{
1493
- },
1494
- "exception":true
1495
- },
1496
- "InvalidTagException":{
1497
- "type":"structure",
1498
- "members":{
1499
- },
1500
- "exception":true
1501
- },
1502
- "InvalidTagFilterException":{
1503
- "type":"structure",
1504
- "members":{
1505
- },
1506
- "exception":true
1507
- },
1508
- "InvalidTimeRangeException":{
1509
- "type":"structure",
1510
- "members":{
1511
- },
1512
- "exception":true
1513
- },
1514
- "InvalidTriggerConfigException":{
1515
- "type":"structure",
1516
- "members":{
1517
- },
1518
- "exception":true
1519
- },
1520
- "Key":{"type":"string"},
1521
- "LifecycleErrorCode":{
1522
- "type":"string",
1523
- "enum":[
1524
- "Success",
1525
- "ScriptMissing",
1526
- "ScriptNotExecutable",
1527
- "ScriptTimedOut",
1528
- "ScriptFailed",
1529
- "UnknownError"
1530
- ]
1531
- },
1532
- "LifecycleEvent":{
1533
- "type":"structure",
1534
- "members":{
1535
- "lifecycleEventName":{"shape":"LifecycleEventName"},
1536
- "diagnostics":{"shape":"Diagnostics"},
1537
- "startTime":{"shape":"Timestamp"},
1538
- "endTime":{"shape":"Timestamp"},
1539
- "status":{"shape":"LifecycleEventStatus"}
1540
- }
1541
- },
1542
- "LifecycleEventList":{
1543
- "type":"list",
1544
- "member":{"shape":"LifecycleEvent"}
1545
- },
1546
- "LifecycleEventName":{"type":"string"},
1547
- "LifecycleEventStatus":{
1548
- "type":"string",
1549
- "enum":[
1550
- "Pending",
1551
- "InProgress",
1552
- "Succeeded",
1553
- "Failed",
1554
- "Skipped",
1555
- "Unknown"
1556
- ]
1557
- },
1558
- "LifecycleHookLimitExceededException":{
1559
- "type":"structure",
1560
- "members":{
1561
- },
1562
- "exception":true
1563
- },
1564
- "LifecycleMessage":{"type":"string"},
1565
- "ListApplicationRevisionsInput":{
1566
- "type":"structure",
1567
- "required":["applicationName"],
1568
- "members":{
1569
- "applicationName":{"shape":"ApplicationName"},
1570
- "sortBy":{"shape":"ApplicationRevisionSortBy"},
1571
- "sortOrder":{"shape":"SortOrder"},
1572
- "s3Bucket":{"shape":"S3Bucket"},
1573
- "s3KeyPrefix":{"shape":"S3Key"},
1574
- "deployed":{"shape":"ListStateFilterAction"},
1575
- "nextToken":{"shape":"NextToken"}
1576
- }
1577
- },
1578
- "ListApplicationRevisionsOutput":{
1579
- "type":"structure",
1580
- "members":{
1581
- "revisions":{"shape":"RevisionLocationList"},
1582
- "nextToken":{"shape":"NextToken"}
1583
- }
1584
- },
1585
- "ListApplicationsInput":{
1586
- "type":"structure",
1587
- "members":{
1588
- "nextToken":{"shape":"NextToken"}
1589
- }
1590
- },
1591
- "ListApplicationsOutput":{
1592
- "type":"structure",
1593
- "members":{
1594
- "applications":{"shape":"ApplicationsList"},
1595
- "nextToken":{"shape":"NextToken"}
1596
- }
1597
- },
1598
- "ListDeploymentConfigsInput":{
1599
- "type":"structure",
1600
- "members":{
1601
- "nextToken":{"shape":"NextToken"}
1602
- }
1603
- },
1604
- "ListDeploymentConfigsOutput":{
1605
- "type":"structure",
1606
- "members":{
1607
- "deploymentConfigsList":{"shape":"DeploymentConfigsList"},
1608
- "nextToken":{"shape":"NextToken"}
1609
- }
1610
- },
1611
- "ListDeploymentGroupsInput":{
1612
- "type":"structure",
1613
- "required":["applicationName"],
1614
- "members":{
1615
- "applicationName":{"shape":"ApplicationName"},
1616
- "nextToken":{"shape":"NextToken"}
1617
- }
1618
- },
1619
- "ListDeploymentGroupsOutput":{
1620
- "type":"structure",
1621
- "members":{
1622
- "applicationName":{"shape":"ApplicationName"},
1623
- "deploymentGroups":{"shape":"DeploymentGroupsList"},
1624
- "nextToken":{"shape":"NextToken"}
1625
- }
1626
- },
1627
- "ListDeploymentInstancesInput":{
1628
- "type":"structure",
1629
- "required":["deploymentId"],
1630
- "members":{
1631
- "deploymentId":{"shape":"DeploymentId"},
1632
- "nextToken":{"shape":"NextToken"},
1633
- "instanceStatusFilter":{"shape":"InstanceStatusList"}
1634
- }
1635
- },
1636
- "ListDeploymentInstancesOutput":{
1637
- "type":"structure",
1638
- "members":{
1639
- "instancesList":{"shape":"InstancesList"},
1640
- "nextToken":{"shape":"NextToken"}
1641
- }
1642
- },
1643
- "ListDeploymentsInput":{
1644
- "type":"structure",
1645
- "members":{
1646
- "applicationName":{"shape":"ApplicationName"},
1647
- "deploymentGroupName":{"shape":"DeploymentGroupName"},
1648
- "includeOnlyStatuses":{"shape":"DeploymentStatusList"},
1649
- "createTimeRange":{"shape":"TimeRange"},
1650
- "nextToken":{"shape":"NextToken"}
1651
- }
1652
- },
1653
- "ListDeploymentsOutput":{
1654
- "type":"structure",
1655
- "members":{
1656
- "deployments":{"shape":"DeploymentsList"},
1657
- "nextToken":{"shape":"NextToken"}
1658
- }
1659
- },
1660
- "ListOnPremisesInstancesInput":{
1661
- "type":"structure",
1662
- "members":{
1663
- "registrationStatus":{"shape":"RegistrationStatus"},
1664
- "tagFilters":{"shape":"TagFilterList"},
1665
- "nextToken":{"shape":"NextToken"}
1666
- }
1667
- },
1668
- "ListOnPremisesInstancesOutput":{
1669
- "type":"structure",
1670
- "members":{
1671
- "instanceNames":{"shape":"InstanceNameList"},
1672
- "nextToken":{"shape":"NextToken"}
1673
- }
1674
- },
1675
- "ListStateFilterAction":{
1676
- "type":"string",
1677
- "enum":[
1678
- "include",
1679
- "exclude",
1680
- "ignore"
1681
- ]
1682
- },
1683
- "LogTail":{"type":"string"},
1684
- "Message":{"type":"string"},
1685
- "MinimumHealthyHosts":{
1686
- "type":"structure",
1687
- "members":{
1688
- "value":{"shape":"MinimumHealthyHostsValue"},
1689
- "type":{"shape":"MinimumHealthyHostsType"}
1690
- }
1691
- },
1692
- "MinimumHealthyHostsType":{
1693
- "type":"string",
1694
- "enum":[
1695
- "HOST_COUNT",
1696
- "FLEET_PERCENT"
1697
- ]
1698
- },
1699
- "MinimumHealthyHostsValue":{"type":"integer"},
1700
- "NextToken":{"type":"string"},
1701
- "RegisterApplicationRevisionInput":{
1702
- "type":"structure",
1703
- "required":[
1704
- "applicationName",
1705
- "revision"
1706
- ],
1707
- "members":{
1708
- "applicationName":{"shape":"ApplicationName"},
1709
- "description":{"shape":"Description"},
1710
- "revision":{"shape":"RevisionLocation"}
1711
- }
1712
- },
1713
- "RegisterOnPremisesInstanceInput":{
1714
- "type":"structure",
1715
- "required":[
1716
- "instanceName",
1717
- "iamUserArn"
1718
- ],
1719
- "members":{
1720
- "instanceName":{"shape":"InstanceName"},
1721
- "iamUserArn":{"shape":"IamUserArn"}
1722
- }
1723
- },
1724
- "RegistrationStatus":{
1725
- "type":"string",
1726
- "enum":[
1727
- "Registered",
1728
- "Deregistered"
1729
- ]
1730
- },
1731
- "RemoveTagsFromOnPremisesInstancesInput":{
1732
- "type":"structure",
1733
- "required":[
1734
- "tags",
1735
- "instanceNames"
1736
- ],
1737
- "members":{
1738
- "tags":{"shape":"TagList"},
1739
- "instanceNames":{"shape":"InstanceNameList"}
1740
- }
1741
- },
1742
- "Repository":{"type":"string"},
1743
- "RevisionDoesNotExistException":{
1744
- "type":"structure",
1745
- "members":{
1746
- },
1747
- "exception":true
1748
- },
1749
- "RevisionInfo":{
1750
- "type":"structure",
1751
- "members":{
1752
- "revisionLocation":{"shape":"RevisionLocation"},
1753
- "genericRevisionInfo":{"shape":"GenericRevisionInfo"}
1754
- }
1755
- },
1756
- "RevisionInfoList":{
1757
- "type":"list",
1758
- "member":{"shape":"RevisionInfo"}
1759
- },
1760
- "RevisionLocation":{
1761
- "type":"structure",
1762
- "members":{
1763
- "revisionType":{"shape":"RevisionLocationType"},
1764
- "s3Location":{"shape":"S3Location"},
1765
- "gitHubLocation":{"shape":"GitHubLocation"}
1766
- }
1767
- },
1768
- "RevisionLocationList":{
1769
- "type":"list",
1770
- "member":{"shape":"RevisionLocation"}
1771
- },
1772
- "RevisionLocationType":{
1773
- "type":"string",
1774
- "enum":[
1775
- "S3",
1776
- "GitHub"
1777
- ]
1778
- },
1779
- "RevisionRequiredException":{
1780
- "type":"structure",
1781
- "members":{
1782
- },
1783
- "exception":true
1784
- },
1785
- "Role":{"type":"string"},
1786
- "RoleRequiredException":{
1787
- "type":"structure",
1788
- "members":{
1789
- },
1790
- "exception":true
1791
- },
1792
- "S3Bucket":{"type":"string"},
1793
- "S3Key":{"type":"string"},
1794
- "S3Location":{
1795
- "type":"structure",
1796
- "members":{
1797
- "bucket":{"shape":"S3Bucket"},
1798
- "key":{"shape":"S3Key"},
1799
- "bundleType":{"shape":"BundleType"},
1800
- "version":{"shape":"VersionId"},
1801
- "eTag":{"shape":"ETag"}
1802
- }
1803
- },
1804
- "ScriptName":{"type":"string"},
1805
- "SortOrder":{
1806
- "type":"string",
1807
- "enum":[
1808
- "ascending",
1809
- "descending"
1810
- ]
1811
- },
1812
- "StopDeploymentInput":{
1813
- "type":"structure",
1814
- "required":["deploymentId"],
1815
- "members":{
1816
- "deploymentId":{"shape":"DeploymentId"}
1817
- }
1818
- },
1819
- "StopDeploymentOutput":{
1820
- "type":"structure",
1821
- "members":{
1822
- "status":{"shape":"StopStatus"},
1823
- "statusMessage":{"shape":"Message"}
1824
- }
1825
- },
1826
- "StopStatus":{
1827
- "type":"string",
1828
- "enum":[
1829
- "Pending",
1830
- "Succeeded"
1831
- ]
1832
- },
1833
- "Tag":{
1834
- "type":"structure",
1835
- "members":{
1836
- "Key":{"shape":"Key"},
1837
- "Value":{"shape":"Value"}
1838
- }
1839
- },
1840
- "TagFilter":{
1841
- "type":"structure",
1842
- "members":{
1843
- "Key":{"shape":"Key"},
1844
- "Value":{"shape":"Value"},
1845
- "Type":{"shape":"TagFilterType"}
1846
- }
1847
- },
1848
- "TagFilterList":{
1849
- "type":"list",
1850
- "member":{"shape":"TagFilter"}
1851
- },
1852
- "TagFilterType":{
1853
- "type":"string",
1854
- "enum":[
1855
- "KEY_ONLY",
1856
- "VALUE_ONLY",
1857
- "KEY_AND_VALUE"
1858
- ]
1859
- },
1860
- "TagLimitExceededException":{
1861
- "type":"structure",
1862
- "members":{
1863
- },
1864
- "exception":true
1865
- },
1866
- "TagList":{
1867
- "type":"list",
1868
- "member":{"shape":"Tag"}
1869
- },
1870
- "TagRequiredException":{
1871
- "type":"structure",
1872
- "members":{
1873
- },
1874
- "exception":true
1875
- },
1876
- "TimeRange":{
1877
- "type":"structure",
1878
- "members":{
1879
- "start":{"shape":"Timestamp"},
1880
- "end":{"shape":"Timestamp"}
1881
- }
1882
- },
1883
- "Timestamp":{"type":"timestamp"},
1884
- "TriggerConfig":{
1885
- "type":"structure",
1886
- "members":{
1887
- "triggerName":{"shape":"TriggerName"},
1888
- "triggerTargetArn":{"shape":"TriggerTargetArn"},
1889
- "triggerEvents":{"shape":"TriggerEventTypeList"}
1890
- }
1891
- },
1892
- "TriggerConfigList":{
1893
- "type":"list",
1894
- "member":{"shape":"TriggerConfig"}
1895
- },
1896
- "TriggerEventType":{
1897
- "type":"string",
1898
- "enum":[
1899
- "DeploymentStart",
1900
- "DeploymentSuccess",
1901
- "DeploymentFailure",
1902
- "DeploymentStop",
1903
- "InstanceStart",
1904
- "InstanceSuccess",
1905
- "InstanceFailure"
1906
- ]
1907
- },
1908
- "TriggerEventTypeList":{
1909
- "type":"list",
1910
- "member":{"shape":"TriggerEventType"}
1911
- },
1912
- "TriggerName":{"type":"string"},
1913
- "TriggerTargetArn":{"type":"string"},
1914
- "TriggerTargetsLimitExceededException":{
1915
- "type":"structure",
1916
- "members":{
1917
- },
1918
- "exception":true
1919
- },
1920
- "UpdateApplicationInput":{
1921
- "type":"structure",
1922
- "members":{
1923
- "applicationName":{"shape":"ApplicationName"},
1924
- "newApplicationName":{"shape":"ApplicationName"}
1925
- }
1926
- },
1927
- "UpdateDeploymentGroupInput":{
1928
- "type":"structure",
1929
- "required":[
1930
- "applicationName",
1931
- "currentDeploymentGroupName"
1932
- ],
1933
- "members":{
1934
- "applicationName":{"shape":"ApplicationName"},
1935
- "currentDeploymentGroupName":{"shape":"DeploymentGroupName"},
1936
- "newDeploymentGroupName":{"shape":"DeploymentGroupName"},
1937
- "deploymentConfigName":{"shape":"DeploymentConfigName"},
1938
- "ec2TagFilters":{"shape":"EC2TagFilterList"},
1939
- "onPremisesInstanceTagFilters":{"shape":"TagFilterList"},
1940
- "autoScalingGroups":{"shape":"AutoScalingGroupNameList"},
1941
- "serviceRoleArn":{"shape":"Role"},
1942
- "triggerConfigurations":{"shape":"TriggerConfigList"}
1943
- }
1944
- },
1945
- "UpdateDeploymentGroupOutput":{
1946
- "type":"structure",
1947
- "members":{
1948
- "hooksNotCleanedUp":{"shape":"AutoScalingGroupList"}
1949
- }
1950
- },
1951
- "Value":{"type":"string"},
1952
- "VersionId":{"type":"string"}
1953
- }
1954
- }