aws-sdk-core 2.11.212 → 3.170.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1183) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1589 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -0
  5. data/lib/aws-defaults/default_configuration.rb +153 -0
  6. data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
  7. data/lib/aws-defaults.rb +3 -0
  8. data/lib/aws-sdk-core/arn.rb +105 -0
  9. data/lib/aws-sdk-core/arn_parser.rb +40 -0
  10. data/lib/aws-sdk-core/assume_role_credentials.rb +23 -7
  11. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +108 -0
  12. data/lib/aws-sdk-core/async_client_stubs.rb +82 -0
  13. data/lib/aws-sdk-core/binary/decode_handler.rb +58 -0
  14. data/lib/aws-sdk-core/binary/encode_handler.rb +45 -0
  15. data/lib/aws-sdk-core/binary/event_builder.rb +124 -0
  16. data/lib/aws-sdk-core/binary/event_parser.rb +136 -0
  17. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +64 -0
  18. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +55 -0
  19. data/lib/aws-sdk-core/binary.rb +8 -0
  20. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +51 -0
  21. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +199 -0
  22. data/lib/aws-sdk-core/client_stubs.rb +31 -21
  23. data/lib/aws-sdk-core/credential_provider.rb +2 -29
  24. data/lib/aws-sdk-core/credential_provider_chain.rb +115 -35
  25. data/lib/aws-sdk-core/credentials.rb +2 -0
  26. data/lib/aws-sdk-core/deprecations.rb +17 -11
  27. data/lib/aws-sdk-core/eager_loader.rb +2 -0
  28. data/lib/aws-sdk-core/ec2_metadata.rb +238 -0
  29. data/lib/aws-sdk-core/ecs_credentials.rb +26 -11
  30. data/lib/aws-sdk-core/endpoint_cache.rb +16 -11
  31. data/lib/aws-sdk-core/endpoints/condition.rb +41 -0
  32. data/lib/aws-sdk-core/endpoints/endpoint.rb +17 -0
  33. data/lib/aws-sdk-core/endpoints/endpoint_rule.rb +75 -0
  34. data/lib/aws-sdk-core/endpoints/error_rule.rb +42 -0
  35. data/lib/aws-sdk-core/endpoints/function.rb +80 -0
  36. data/lib/aws-sdk-core/endpoints/matchers.rb +127 -0
  37. data/lib/aws-sdk-core/endpoints/reference.rb +31 -0
  38. data/lib/aws-sdk-core/endpoints/rule.rb +25 -0
  39. data/lib/aws-sdk-core/endpoints/rule_set.rb +52 -0
  40. data/lib/aws-sdk-core/endpoints/rules_provider.rb +37 -0
  41. data/lib/aws-sdk-core/endpoints/templater.rb +58 -0
  42. data/lib/aws-sdk-core/endpoints/tree_rule.rb +45 -0
  43. data/lib/aws-sdk-core/endpoints/url.rb +60 -0
  44. data/lib/aws-sdk-core/endpoints.rb +74 -0
  45. data/lib/aws-sdk-core/errors.rb +229 -31
  46. data/lib/aws-sdk-core/event_emitter.rb +64 -0
  47. data/lib/aws-sdk-core/ini_parser.rb +3 -0
  48. data/lib/aws-sdk-core/instance_profile_credentials.rb +231 -42
  49. data/lib/aws-sdk-core/json/builder.rb +6 -2
  50. data/lib/aws-sdk-core/json/error_handler.rb +31 -3
  51. data/lib/aws-sdk-core/json/handler.rb +24 -3
  52. data/lib/aws-sdk-core/json/json_engine.rb +12 -8
  53. data/lib/aws-sdk-core/json/oj_engine.rb +35 -6
  54. data/lib/aws-sdk-core/json/parser.rb +11 -1
  55. data/lib/aws-sdk-core/json.rb +15 -33
  56. data/lib/aws-sdk-core/log/formatter.rb +16 -4
  57. data/lib/aws-sdk-core/log/handler.rb +2 -0
  58. data/lib/aws-sdk-core/log/param_filter.rb +41 -15
  59. data/lib/aws-sdk-core/log/param_formatter.rb +2 -0
  60. data/lib/aws-sdk-core/pageable_response.rb +119 -47
  61. data/lib/aws-sdk-core/pager.rb +35 -25
  62. data/lib/aws-sdk-core/param_converter.rb +5 -3
  63. data/lib/aws-sdk-core/param_validator.rb +109 -26
  64. data/lib/aws-sdk-core/plugins/api_key.rb +56 -0
  65. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +32 -0
  66. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +36 -0
  67. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +39 -0
  68. data/lib/aws-sdk-core/plugins/bearer_authorization.rb +67 -0
  69. data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
  70. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +283 -0
  71. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +86 -0
  72. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +105 -0
  73. data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
  74. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +58 -53
  75. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +17 -14
  76. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +32 -0
  77. data/lib/aws-sdk-core/plugins/global_configuration.rb +21 -10
  78. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +2 -0
  79. data/lib/aws-sdk-core/plugins/http_checksum.rb +64 -0
  80. data/lib/aws-sdk-core/plugins/idempotency_token.rb +3 -2
  81. data/lib/aws-sdk-core/plugins/invocation_id.rb +35 -0
  82. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +36 -6
  83. data/lib/aws-sdk-core/plugins/logging.rb +20 -18
  84. data/lib/aws-sdk-core/plugins/param_converter.rb +11 -5
  85. data/lib/aws-sdk-core/plugins/param_validator.rb +10 -5
  86. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +29 -0
  87. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +4 -1
  88. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +15 -12
  89. data/lib/aws-sdk-core/plugins/protocols/query.rb +4 -2
  90. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +18 -1
  91. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +2 -0
  92. data/lib/aws-sdk-core/plugins/recursion_detection.rb +38 -0
  93. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +99 -28
  94. data/lib/aws-sdk-core/plugins/response_paging.rb +8 -19
  95. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +139 -0
  96. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +100 -0
  97. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +147 -0
  98. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +59 -0
  99. data/lib/aws-sdk-core/plugins/retry_errors.rb +346 -97
  100. data/lib/aws-sdk-core/plugins/sign.rb +200 -0
  101. data/lib/aws-sdk-core/plugins/signature_v2.rb +54 -0
  102. data/lib/aws-sdk-core/plugins/signature_v4.rb +151 -0
  103. data/lib/aws-sdk-core/plugins/stub_responses.rb +44 -18
  104. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  105. data/lib/aws-sdk-core/plugins/user_agent.rb +25 -10
  106. data/lib/aws-sdk-core/process_credentials.rb +79 -0
  107. data/lib/aws-sdk-core/query/ec2_param_builder.rb +11 -3
  108. data/lib/aws-sdk-core/query/handler.rb +22 -16
  109. data/lib/aws-sdk-core/query/param.rb +2 -0
  110. data/lib/aws-sdk-core/query/param_builder.rb +12 -4
  111. data/lib/aws-sdk-core/query/param_list.rb +2 -0
  112. data/lib/aws-sdk-core/query.rb +7 -0
  113. data/lib/aws-sdk-core/refreshing_credentials.rb +45 -12
  114. data/lib/aws-sdk-core/refreshing_token.rb +71 -0
  115. data/lib/aws-sdk-core/resources/collection.rb +123 -0
  116. data/lib/aws-sdk-core/rest/handler.rb +4 -1
  117. data/lib/aws-sdk-core/rest/request/body.rb +21 -1
  118. data/lib/aws-sdk-core/rest/request/builder.rb +4 -1
  119. data/lib/aws-sdk-core/rest/request/endpoint.rb +13 -6
  120. data/lib/aws-sdk-core/rest/request/headers.rb +26 -6
  121. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +17 -2
  122. data/lib/aws-sdk-core/rest/response/body.rb +16 -1
  123. data/lib/aws-sdk-core/rest/response/headers.rb +8 -3
  124. data/lib/aws-sdk-core/rest/response/parser.rb +20 -14
  125. data/lib/aws-sdk-core/rest/response/status_code.rb +2 -0
  126. data/lib/aws-sdk-core/rest.rb +12 -0
  127. data/lib/aws-sdk-core/shared_config.rb +272 -72
  128. data/lib/aws-sdk-core/shared_credentials.rb +11 -1
  129. data/lib/aws-sdk-core/sso_credentials.rb +172 -0
  130. data/lib/aws-sdk-core/sso_token_provider.rb +135 -0
  131. data/lib/aws-sdk-core/static_token_provider.rb +14 -0
  132. data/lib/aws-sdk-core/structure.rb +39 -17
  133. data/lib/aws-sdk-core/stubbing/data_applicator.rb +3 -1
  134. data/lib/aws-sdk-core/stubbing/empty_stub.rb +12 -3
  135. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +10 -0
  136. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +3 -1
  137. data/lib/aws-sdk-core/stubbing/protocols/json.rb +3 -1
  138. data/lib/aws-sdk-core/stubbing/protocols/query.rb +4 -2
  139. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +120 -2
  140. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +8 -2
  141. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +11 -7
  142. data/lib/aws-sdk-core/stubbing/stub_data.rb +18 -3
  143. data/lib/aws-sdk-core/stubbing/xml_error.rb +2 -0
  144. data/lib/aws-sdk-core/token.rb +31 -0
  145. data/lib/aws-sdk-core/token_provider.rb +15 -0
  146. data/lib/aws-sdk-core/token_provider_chain.rb +51 -0
  147. data/lib/aws-sdk-core/type_builder.rb +2 -0
  148. data/lib/aws-sdk-core/util.rb +72 -0
  149. data/lib/aws-sdk-core/waiters/errors.rb +2 -0
  150. data/lib/aws-sdk-core/waiters/poller.rb +7 -9
  151. data/lib/aws-sdk-core/waiters/waiter.rb +5 -2
  152. data/lib/aws-sdk-core/waiters.rb +5 -0
  153. data/lib/aws-sdk-core/xml/builder.rb +15 -7
  154. data/lib/aws-sdk-core/xml/default_list.rb +2 -0
  155. data/lib/aws-sdk-core/xml/default_map.rb +2 -0
  156. data/lib/aws-sdk-core/xml/doc_builder.rb +15 -4
  157. data/lib/aws-sdk-core/xml/error_handler.rb +37 -6
  158. data/lib/aws-sdk-core/xml/parser/engines/libxml.rb +2 -0
  159. data/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb +2 -0
  160. data/lib/aws-sdk-core/xml/parser/engines/oga.rb +4 -0
  161. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +3 -1
  162. data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +4 -1
  163. data/lib/aws-sdk-core/xml/parser/frame.rb +31 -6
  164. data/lib/aws-sdk-core/xml/parser/parsing_error.rb +2 -0
  165. data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
  166. data/lib/aws-sdk-core/xml/parser.rb +8 -11
  167. data/lib/aws-sdk-core/xml.rb +11 -0
  168. data/lib/aws-sdk-core.rb +115 -532
  169. data/lib/aws-sdk-sso/client.rb +610 -0
  170. data/lib/aws-sdk-sso/client_api.rb +190 -0
  171. data/lib/aws-sdk-sso/customizations.rb +1 -0
  172. data/lib/aws-sdk-sso/endpoint_parameters.rb +66 -0
  173. data/lib/aws-sdk-sso/endpoint_provider.rb +51 -0
  174. data/lib/aws-sdk-sso/endpoints.rb +71 -0
  175. data/lib/aws-sdk-sso/errors.rb +102 -0
  176. data/lib/aws-sdk-sso/plugins/endpoints.rb +76 -0
  177. data/lib/aws-sdk-sso/resource.rb +26 -0
  178. data/lib/aws-sdk-sso/types.rb +317 -0
  179. data/lib/aws-sdk-sso.rb +59 -0
  180. data/lib/aws-sdk-ssooidc/client.rb +606 -0
  181. data/lib/aws-sdk-ssooidc/client_api.rb +216 -0
  182. data/lib/aws-sdk-ssooidc/customizations.rb +1 -0
  183. data/lib/aws-sdk-ssooidc/endpoint_parameters.rb +66 -0
  184. data/lib/aws-sdk-ssooidc/endpoint_provider.rb +51 -0
  185. data/lib/aws-sdk-ssooidc/endpoints.rb +57 -0
  186. data/lib/aws-sdk-ssooidc/errors.rb +290 -0
  187. data/lib/aws-sdk-ssooidc/plugins/endpoints.rb +74 -0
  188. data/lib/aws-sdk-ssooidc/resource.rb +26 -0
  189. data/lib/aws-sdk-ssooidc/types.rb +502 -0
  190. data/lib/aws-sdk-ssooidc.rb +59 -0
  191. data/lib/aws-sdk-sts/client.rb +2343 -0
  192. data/lib/aws-sdk-sts/client_api.rb +344 -0
  193. data/lib/aws-sdk-sts/customizations.rb +4 -0
  194. data/lib/aws-sdk-sts/endpoint_parameters.rb +78 -0
  195. data/lib/aws-sdk-sts/endpoint_provider.rb +109 -0
  196. data/lib/aws-sdk-sts/endpoints.rb +135 -0
  197. data/lib/aws-sdk-sts/errors.rb +166 -0
  198. data/lib/aws-sdk-sts/plugins/endpoints.rb +84 -0
  199. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +38 -0
  200. data/lib/aws-sdk-sts/presigner.rb +73 -0
  201. data/lib/aws-sdk-sts/resource.rb +26 -0
  202. data/lib/aws-sdk-sts/types.rb +1566 -0
  203. data/lib/aws-sdk-sts.rb +59 -0
  204. data/lib/seahorse/client/async_base.rb +51 -0
  205. data/lib/seahorse/client/async_response.rb +64 -0
  206. data/lib/seahorse/client/base.rb +8 -9
  207. data/lib/seahorse/client/block_io.rb +6 -2
  208. data/lib/seahorse/client/configuration.rb +12 -4
  209. data/lib/seahorse/client/events.rb +3 -1
  210. data/lib/seahorse/client/h2/connection.rb +247 -0
  211. data/lib/seahorse/client/h2/handler.rb +152 -0
  212. data/lib/seahorse/client/handler.rb +2 -0
  213. data/lib/seahorse/client/handler_builder.rb +2 -0
  214. data/lib/seahorse/client/handler_list.rb +2 -0
  215. data/lib/seahorse/client/handler_list_entry.rb +6 -4
  216. data/lib/seahorse/client/http/async_response.rb +44 -0
  217. data/lib/seahorse/client/http/headers.rb +2 -0
  218. data/lib/seahorse/client/http/request.rb +5 -3
  219. data/lib/seahorse/client/http/response.rb +18 -11
  220. data/lib/seahorse/client/logging/formatter.rb +8 -2
  221. data/lib/seahorse/client/logging/handler.rb +4 -0
  222. data/lib/seahorse/client/managed_file.rb +2 -0
  223. data/lib/seahorse/client/net_http/connection_pool.rb +46 -27
  224. data/lib/seahorse/client/net_http/handler.rb +29 -7
  225. data/lib/seahorse/client/net_http/patches.rb +18 -79
  226. data/lib/seahorse/client/networking_error.rb +30 -0
  227. data/lib/seahorse/client/plugin.rb +69 -6
  228. data/lib/seahorse/client/plugin_list.rb +2 -0
  229. data/lib/seahorse/client/plugins/content_length.rb +14 -3
  230. data/lib/seahorse/client/plugins/endpoint.rb +16 -10
  231. data/lib/seahorse/client/plugins/h2.rb +69 -0
  232. data/lib/seahorse/client/plugins/logging.rb +19 -19
  233. data/lib/seahorse/client/plugins/net_http.rb +58 -14
  234. data/lib/seahorse/client/plugins/operation_methods.rb +2 -0
  235. data/lib/seahorse/client/plugins/raise_response_errors.rb +6 -4
  236. data/lib/seahorse/client/plugins/request_callback.rb +110 -0
  237. data/lib/seahorse/client/plugins/response_target.rb +28 -10
  238. data/lib/seahorse/client/request.rb +2 -0
  239. data/lib/seahorse/client/request_context.rb +7 -0
  240. data/lib/seahorse/client/response.rb +5 -5
  241. data/lib/seahorse/model/api.rb +39 -0
  242. data/lib/seahorse/model/authorizer.rb +23 -0
  243. data/lib/seahorse/model/operation.rb +19 -0
  244. data/lib/seahorse/model/shapes.rb +71 -2
  245. data/lib/seahorse/util.rb +13 -23
  246. data/lib/seahorse/version.rb +2 -0
  247. data/lib/seahorse.rb +63 -60
  248. metadata +177 -951
  249. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
  250. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  251. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
  252. data/apis/acm/2015-12-08/api-2.json +0 -808
  253. data/apis/acm/2015-12-08/examples-1.json +0 -5
  254. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  255. data/apis/acm/2015-12-08/smoke.json +0 -18
  256. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  257. data/apis/acm-pca/2017-08-22/api-2.json +0 -941
  258. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  259. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -10
  260. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  261. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -3104
  262. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  263. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -79
  264. data/apis/amplify/2017-07-25/api-2.json +0 -1453
  265. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  266. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  267. data/apis/apigateway/2015-07-09/api-2.json +0 -5351
  268. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  269. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  270. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  271. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -96
  272. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  273. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5531
  274. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  275. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -766
  276. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  277. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  278. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  279. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  280. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  281. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  282. data/apis/appstream/2016-12-01/api-2.json +0 -2171
  283. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  284. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  285. data/apis/appstream/2016-12-01/smoke.json +0 -11
  286. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  287. data/apis/appsync/2017-07-25/api-2.json +0 -1812
  288. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  289. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  290. data/apis/athena/2017-05-18/api-2.json +0 -626
  291. data/apis/athena/2017-05-18/examples-1.json +0 -5
  292. data/apis/athena/2017-05-18/paginators-1.json +0 -19
  293. data/apis/athena/2017-05-18/smoke.json +0 -11
  294. data/apis/autoscaling/2011-01-01/api-2.json +0 -2450
  295. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  296. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  297. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  298. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  299. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  300. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  301. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  302. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  303. data/apis/backup/2018-11-15/api-2.json +0 -2150
  304. data/apis/backup/2018-11-15/examples-1.json +0 -5
  305. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  306. data/apis/batch/2016-08-10/api-2.json +0 -1072
  307. data/apis/batch/2016-08-10/examples-1.json +0 -589
  308. data/apis/batch/2016-08-10/paginators-1.json +0 -4
  309. data/apis/batch/2016-08-10/smoke.json +0 -11
  310. data/apis/budgets/2016-10-20/api-2.json +0 -801
  311. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  312. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  313. data/apis/ce/2017-10-25/api-2.json +0 -840
  314. data/apis/ce/2017-10-25/examples-1.json +0 -5
  315. data/apis/ce/2017-10-25/paginators-1.json +0 -4
  316. data/apis/chime/2018-05-01/api-2.json +0 -939
  317. data/apis/chime/2018-05-01/examples-1.json +0 -5
  318. data/apis/chime/2018-05-01/paginators-1.json +0 -14
  319. data/apis/cloud9/2017-09-23/api-2.json +0 -528
  320. data/apis/cloud9/2017-09-23/examples-1.json +0 -308
  321. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  322. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  323. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  324. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  325. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  326. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  327. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  328. data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
  329. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  330. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
  331. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  332. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
  333. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  334. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  335. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  336. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  337. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  338. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  339. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  340. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  341. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  342. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  343. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  344. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  345. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  346. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  347. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  348. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  349. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  350. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  351. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  352. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  353. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  354. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  355. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  356. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  357. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  358. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  359. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  360. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  361. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  362. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  363. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  364. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  365. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  366. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  367. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  368. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  369. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  370. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  371. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  372. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  373. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  374. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  375. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  376. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  377. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  378. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  379. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  380. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  381. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  382. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  383. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  384. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  385. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  386. data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
  387. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  388. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  389. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  390. data/apis/codebuild/2016-10-06/api-2.json +0 -1211
  391. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  392. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  393. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  394. data/apis/codecommit/2015-04-13/api-2.json +0 -2842
  395. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  396. data/apis/codecommit/2015-04-13/paginators-1.json +0 -39
  397. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  398. data/apis/codedeploy/2014-10-06/api-2.json +0 -3062
  399. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  400. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  401. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  402. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  403. data/apis/codepipeline/2015-07-09/api-2.json +0 -2085
  404. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  405. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -4
  406. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  407. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  408. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  409. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  410. data/apis/codestar/2017-04-19/smoke.json +0 -11
  411. data/apis/cognito-identity/2014-06-30/api-2.json +0 -943
  412. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  413. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  414. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5194
  415. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  416. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -4
  417. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  418. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  419. data/apis/comprehend/2017-11-27/api-2.json +0 -2106
  420. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  421. data/apis/comprehend/2017-11-27/paginators-1.json +0 -29
  422. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
  423. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  424. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  425. data/apis/config/2014-11-12/api-2.json +0 -2477
  426. data/apis/config/2014-11-12/examples-1.json +0 -5
  427. data/apis/config/2014-11-12/paginators-1.json +0 -10
  428. data/apis/config/2014-11-12/smoke.json +0 -19
  429. data/apis/connect/2017-08-08/api-2.json +0 -1379
  430. data/apis/connect/2017-08-08/examples-1.json +0 -5
  431. data/apis/connect/2017-08-08/paginators-1.json +0 -14
  432. data/apis/cur/2017-01-06/api-2.json +0 -226
  433. data/apis/cur/2017-01-06/examples-1.json +0 -5
  434. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  435. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  436. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  437. data/apis/datasync/2018-11-09/api-2.json +0 -1060
  438. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  439. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  440. data/apis/dax/2017-04-19/api-2.json +0 -1140
  441. data/apis/dax/2017-04-19/examples-1.json +0 -5
  442. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  443. data/apis/devicefarm/2015-06-23/api-2.json +0 -3053
  444. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  445. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  446. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  447. data/apis/directconnect/2012-10-25/api-2.json +0 -1689
  448. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  449. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  450. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  451. data/apis/discovery/2015-11-01/api-2.json +0 -1331
  452. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  453. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  454. data/apis/discovery/2015-11-01/smoke.json +0 -11
  455. data/apis/dlm/2018-01-12/api-2.json +0 -418
  456. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  457. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  458. data/apis/dms/2016-01-01/api-2.json +0 -2040
  459. data/apis/dms/2016-01-01/examples-1.json +0 -1053
  460. data/apis/dms/2016-01-01/paginators-1.json +0 -74
  461. data/apis/dms/2016-01-01/smoke.json +0 -18
  462. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  463. data/apis/docdb/2014-10-31/api-2.json +0 -2413
  464. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  465. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  466. data/apis/docdb/2014-10-31/smoke.json +0 -18
  467. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  468. data/apis/ds/2015-04-16/api-2.json +0 -2631
  469. data/apis/ds/2015-04-16/examples-1.json +0 -5
  470. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  471. data/apis/ds/2015-04-16/smoke.json +0 -20
  472. data/apis/dynamodb/2011-12-05/api-2.json +0 -803
  473. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  474. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  475. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  476. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  477. data/apis/dynamodb/2012-08-10/api-2.json +0 -2801
  478. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  479. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  480. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  481. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  482. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  483. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  484. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  485. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  486. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  487. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  488. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  489. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  490. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  491. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  492. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  493. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  494. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  495. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  496. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  497. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  498. data/apis/ec2/2016-11-15/api-2.json +0 -23190
  499. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  500. data/apis/ec2/2016-11-15/paginators-1.json +0 -153
  501. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  502. data/apis/ec2/2016-11-15/smoke.json +0 -20
  503. data/apis/ec2/2016-11-15/waiters-2.json +0 -622
  504. data/apis/ecr/2015-09-21/api-2.json +0 -1328
  505. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  506. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  507. data/apis/ecr/2015-09-21/smoke.json +0 -18
  508. data/apis/ecs/2014-11-13/api-2.json +0 -2414
  509. data/apis/ecs/2014-11-13/examples-1.json +0 -952
  510. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  511. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  512. data/apis/eks/2017-11-01/api-2.json +0 -509
  513. data/apis/eks/2017-11-01/examples-1.json +0 -114
  514. data/apis/eks/2017-11-01/paginators-1.json +0 -4
  515. data/apis/eks/2017-11-01/waiters-2.json +0 -54
  516. data/apis/elasticache/2015-02-02/api-2.json +0 -2793
  517. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  518. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  519. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  520. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  521. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2488
  522. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  523. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  524. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  525. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -805
  526. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -222
  527. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  528. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  529. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  530. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  531. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  532. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  533. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  534. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2241
  535. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  536. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  537. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  538. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  539. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2086
  540. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  541. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -37
  542. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  543. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  544. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  545. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  546. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  547. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  548. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  549. data/apis/email/2010-12-01/api-2.json +0 -3134
  550. data/apis/email/2010-12-01/examples-1.json +0 -1021
  551. data/apis/email/2010-12-01/paginators-1.json +0 -18
  552. data/apis/email/2010-12-01/smoke.json +0 -18
  553. data/apis/email/2010-12-01/waiters-2.json +0 -18
  554. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  555. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  556. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  557. data/apis/es/2015-01-01/api-2.json +0 -1520
  558. data/apis/es/2015-01-01/examples-1.json +0 -5
  559. data/apis/es/2015-01-01/paginators-1.json +0 -29
  560. data/apis/es/2015-01-01/smoke.json +0 -18
  561. data/apis/events/2015-10-07/api-2.json +0 -850
  562. data/apis/events/2015-10-07/examples-1.json +0 -5
  563. data/apis/events/2015-10-07/paginators-1.json +0 -4
  564. data/apis/events/2015-10-07/smoke.json +0 -18
  565. data/apis/firehose/2015-08-04/api-2.json +0 -1376
  566. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  567. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  568. data/apis/firehose/2015-08-04/smoke.json +0 -18
  569. data/apis/fms/2018-01-01/api-2.json +0 -636
  570. data/apis/fms/2018-01-01/examples-1.json +0 -5
  571. data/apis/fms/2018-01-01/paginators-1.json +0 -4
  572. data/apis/fsx/2018-03-01/api-2.json +0 -953
  573. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  574. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  575. data/apis/gamelift/2015-10-01/api-2.json +0 -3243
  576. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  577. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  578. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  579. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  580. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  581. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  582. data/apis/glacier/2012-06-01/smoke.json +0 -18
  583. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  584. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -798
  585. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  586. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  587. data/apis/glue/2017-03-31/api-2.json +0 -4410
  588. data/apis/glue/2017-03-31/examples-1.json +0 -5
  589. data/apis/glue/2017-03-31/paginators-1.json +0 -69
  590. data/apis/glue/2017-03-31/smoke.json +0 -11
  591. data/apis/greengrass/2017-06-07/api-2.json +0 -4936
  592. data/apis/guardduty/2017-11-28/api-2.json +0 -3039
  593. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  594. data/apis/health/2016-08-04/api-2.json +0 -553
  595. data/apis/health/2016-08-04/examples-1.json +0 -5
  596. data/apis/health/2016-08-04/paginators-1.json +0 -31
  597. data/apis/health/2016-08-04/smoke.json +0 -11
  598. data/apis/iam/2010-05-08/api-2.json +0 -5629
  599. data/apis/iam/2010-05-08/examples-1.json +0 -1489
  600. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  601. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  602. data/apis/iam/2010-05-08/smoke.json +0 -18
  603. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  604. data/apis/importexport/2010-06-01/api-2.json +0 -667
  605. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  606. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  607. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  608. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  609. data/apis/inspector/2016-02-16/smoke.json +0 -18
  610. data/apis/iot/2015-05-28/api-2.json +0 -8866
  611. data/apis/iot/2015-05-28/examples-1.json +0 -5
  612. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  613. data/apis/iot/2015-05-28/smoke.json +0 -18
  614. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  615. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  616. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  617. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  618. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -769
  619. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -748
  620. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  621. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -4
  622. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2054
  623. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  624. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  625. data/apis/kafka/2018-11-14/api-2.json +0 -789
  626. data/apis/kafka/2018-11-14/paginators-1.json +0 -3
  627. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  628. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  629. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  630. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  631. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  632. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -318
  633. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  634. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -4
  635. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  636. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  637. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  638. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1378
  639. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  640. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  641. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -1984
  642. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  643. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  644. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -549
  645. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  646. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -4
  647. data/apis/kms/2014-11-01/api-2.json +0 -1833
  648. data/apis/kms/2014-11-01/examples-1.json +0 -906
  649. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  650. data/apis/kms/2014-11-01/smoke.json +0 -19
  651. data/apis/lambda/2014-11-11/api-2.json +0 -668
  652. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  653. data/apis/lambda/2015-03-31/api-2.json +0 -2317
  654. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  655. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  656. data/apis/lambda/2015-03-31/smoke.json +0 -18
  657. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  658. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  659. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  660. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  661. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  662. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  663. data/apis/lightsail/2016-11-28/api-2.json +0 -4732
  664. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  665. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  666. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  667. data/apis/logs/2014-03-28/api-2.json +0 -1689
  668. data/apis/logs/2014-03-28/examples-1.json +0 -5
  669. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  670. data/apis/logs/2014-03-28/smoke.json +0 -19
  671. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  672. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  673. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  674. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  675. data/apis/macie/2017-12-19/api-2.json +0 -365
  676. data/apis/macie/2017-12-19/examples-1.json +0 -5
  677. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  678. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -171
  679. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  680. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  681. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1586
  682. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -10
  683. data/apis/mediaconvert/2017-08-29/api-2.json +0 -7691
  684. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  685. data/apis/medialive/2017-10-14/api-2.json +0 -7865
  686. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  687. data/apis/mediapackage/2017-10-12/api-2.json +0 -1780
  688. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
  689. data/apis/mediastore/2017-09-01/api-2.json +0 -568
  690. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  691. data/apis/mediastore/2017-09-01/paginators-1.json +0 -4
  692. data/apis/mediastore-data/2017-09-01/api-2.json +0 -392
  693. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  694. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -4
  695. data/apis/mediatailor/2018-04-23/api-2.json +0 -311
  696. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  697. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -347
  698. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  699. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  700. data/apis/mobile/2017-07-01/api-2.json +0 -551
  701. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  702. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  703. data/apis/monitoring/2010-08-01/api-2.json +0 -1199
  704. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  705. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  706. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  707. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  708. data/apis/mq/2017-11-27/api-2.json +0 -2241
  709. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  710. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  711. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  712. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  713. data/apis/neptune/2014-10-31/api-2.json +0 -3506
  714. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  715. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  716. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  717. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  718. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  719. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  720. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  721. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  722. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  723. data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
  724. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  725. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  726. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  727. data/apis/organizations/2016-11-28/api-2.json +0 -2137
  728. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  729. data/apis/organizations/2016-11-28/paginators-1.json +0 -69
  730. data/apis/pi/2018-02-27/api-2.json +0 -253
  731. data/apis/pi/2018-02-27/examples-1.json +0 -5
  732. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  733. data/apis/pinpoint/2016-12-01/api-2.json +0 -6965
  734. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  735. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -1710
  736. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  737. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -29
  738. data/apis/polly/2016-06-10/api-2.json +0 -795
  739. data/apis/polly/2016-06-10/examples-1.json +0 -171
  740. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  741. data/apis/polly/2016-06-10/smoke.json +0 -11
  742. data/apis/pricing/2017-10-15/api-2.json +0 -227
  743. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  744. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  745. data/apis/quicksight/2018-04-01/api-2.json +0 -1158
  746. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  747. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  748. data/apis/ram/2018-01-04/api-2.json +0 -964
  749. data/apis/ram/2018-01-04/examples-1.json +0 -5
  750. data/apis/ram/2018-01-04/paginators-1.json +0 -34
  751. data/apis/rds/2013-01-10/api-2.json +0 -2903
  752. data/apis/rds/2013-01-10/examples-1.json +0 -5
  753. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  754. data/apis/rds/2013-01-10/smoke.json +0 -18
  755. data/apis/rds/2013-02-12/api-2.json +0 -3059
  756. data/apis/rds/2013-02-12/examples-1.json +0 -5
  757. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  758. data/apis/rds/2013-02-12/smoke.json +0 -18
  759. data/apis/rds/2013-09-09/api-2.json +0 -3160
  760. data/apis/rds/2013-09-09/examples-1.json +0 -5
  761. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  762. data/apis/rds/2013-09-09/smoke.json +0 -18
  763. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  764. data/apis/rds/2014-09-01/api-2.json +0 -3273
  765. data/apis/rds/2014-09-01/examples-1.json +0 -5
  766. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  767. data/apis/rds/2014-09-01/smoke.json +0 -18
  768. data/apis/rds/2014-10-31/api-2.json +0 -6455
  769. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  770. data/apis/rds/2014-10-31/paginators-1.json +0 -128
  771. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  772. data/apis/rds/2014-10-31/smoke.json +0 -18
  773. data/apis/rds/2014-10-31/waiters-2.json +0 -175
  774. data/apis/rds/2015-11-12/api-2.json +0 -5509
  775. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  776. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  777. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  778. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  779. data/apis/rds-data/2018-08-01/api-2.json +0 -329
  780. data/apis/rds-data/2018-08-01/examples-1.json +0 -4
  781. data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
  782. data/apis/redshift/2012-12-01/api-2.json +0 -4885
  783. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  784. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  785. data/apis/redshift/2012-12-01/smoke.json +0 -18
  786. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  787. data/apis/rekognition/2016-06-27/api-2.json +0 -2140
  788. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  789. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  790. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  791. data/apis/resource-groups/2017-11-27/api-2.json +0 -731
  792. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  793. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  794. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -328
  795. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  796. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  797. data/apis/robomaker/2018-06-29/api-2.json +0 -1775
  798. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  799. data/apis/robomaker/2018-06-29/paginators-1.json +0 -4
  800. data/apis/route53/2013-04-01/api-2.json +0 -3772
  801. data/apis/route53/2013-04-01/examples-1.json +0 -762
  802. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  803. data/apis/route53/2013-04-01/smoke.json +0 -18
  804. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  805. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  806. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  807. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  808. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  809. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  810. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  811. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  812. data/apis/runtime.lex/2016-11-28/api-2.json +0 -419
  813. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  814. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  815. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  816. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  817. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  818. data/apis/s3/2006-03-01/api-2.json +0 -6519
  819. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  820. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  821. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  822. data/apis/s3/2006-03-01/smoke.json +0 -11
  823. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  824. data/apis/s3control/2018-08-20/api-2.json +0 -126
  825. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  826. data/apis/s3control/2018-08-20/paginators-1.json +0 -4
  827. data/apis/sagemaker/2017-07-24/api-2.json +0 -5070
  828. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  829. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  830. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  831. data/apis/sdb/2009-04-15/api-2.json +0 -955
  832. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  833. data/apis/secretsmanager/2017-10-17/api-2.json +0 -974
  834. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  835. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  836. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  837. data/apis/securityhub/2018-10-26/api-2.json +0 -1660
  838. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  839. data/apis/securityhub/2018-10-26/paginators-1.json +0 -19
  840. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1750
  841. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  842. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3675
  843. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  844. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -79
  845. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  846. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  847. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  848. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  849. data/apis/shield/2016-06-02/api-2.json +0 -890
  850. data/apis/shield/2016-06-02/examples-1.json +0 -5
  851. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  852. data/apis/shield/2016-06-02/smoke.json +0 -11
  853. data/apis/signer/2017-08-25/api-2.json +0 -670
  854. data/apis/signer/2017-08-25/examples-1.json +0 -5
  855. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  856. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  857. data/apis/sms/2016-10-24/api-2.json +0 -1366
  858. data/apis/sms/2016-10-24/examples-1.json +0 -5
  859. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  860. data/apis/sms/2016-10-24/smoke.json +0 -18
  861. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  862. data/apis/snowball/2016-06-30/api-2.json +0 -929
  863. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  864. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  865. data/apis/snowball/2016-06-30/smoke.json +0 -11
  866. data/apis/sns/2010-03-31/api-2.json +0 -1259
  867. data/apis/sns/2010-03-31/examples-1.json +0 -5
  868. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  869. data/apis/sns/2010-03-31/resources-1.json +0 -327
  870. data/apis/sns/2010-03-31/smoke.json +0 -19
  871. data/apis/sqs/2012-11-05/api-2.json +0 -1078
  872. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  873. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  874. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  875. data/apis/sqs/2012-11-05/smoke.json +0 -18
  876. data/apis/ssm/2014-11-06/api-2.json +0 -8149
  877. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  878. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  879. data/apis/ssm/2014-11-06/smoke.json +0 -18
  880. data/apis/states/2016-11-23/api-2.json +0 -1363
  881. data/apis/states/2016-11-23/examples-1.json +0 -5
  882. data/apis/states/2016-11-23/paginators-1.json +0 -28
  883. data/apis/states/2016-11-23/smoke.json +0 -11
  884. data/apis/storagegateway/2013-06-30/api-2.json +0 -3047
  885. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  886. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  887. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  888. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  889. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  890. data/apis/sts/2011-06-15/api-2.json +0 -523
  891. data/apis/sts/2011-06-15/examples-1.json +0 -206
  892. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  893. data/apis/support/2013-04-15/api-2.json +0 -772
  894. data/apis/support/2013-04-15/examples-1.json +0 -5
  895. data/apis/support/2013-04-15/paginators-1.json +0 -25
  896. data/apis/swf/2012-01-25/api-2.json +0 -2613
  897. data/apis/swf/2012-01-25/examples-1.json +0 -5
  898. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  899. data/apis/transcribe/2017-10-26/api-2.json +0 -499
  900. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  901. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  902. data/apis/transfer/2018-11-05/api-2.json +0 -818
  903. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  904. data/apis/transfer/2018-11-05/paginators-1.json +0 -4
  905. data/apis/translate/2017-07-01/api-2.json +0 -408
  906. data/apis/translate/2017-07-01/examples-1.json +0 -5
  907. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  908. data/apis/waf/2015-08-24/api-2.json +0 -3674
  909. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  910. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  911. data/apis/waf/2015-08-24/smoke.json +0 -21
  912. data/apis/waf-regional/2016-11-28/api-2.json +0 -3809
  913. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  914. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  915. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  916. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  917. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  918. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  919. data/apis/worklink/2018-09-25/api-2.json +0 -873
  920. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  921. data/apis/worklink/2018-09-25/paginators-1.json +0 -19
  922. data/apis/workmail/2017-10-01/api-2.json +0 -1482
  923. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  924. data/apis/workmail/2017-10-01/paginators-1.json +0 -39
  925. data/apis/workspaces/2015-04-08/api-2.json +0 -1648
  926. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  927. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  928. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  929. data/apis/xray/2016-04-12/api-2.json +0 -1277
  930. data/apis/xray/2016-04-12/examples-1.json +0 -5
  931. data/apis/xray/2016-04-12/paginators-1.json +0 -24
  932. data/bin/aws.rb +0 -180
  933. data/endpoints.json +0 -3689
  934. data/lib/aws-sdk-core/acm.rb +0 -7
  935. data/lib/aws-sdk-core/acmpca.rb +0 -7
  936. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  937. data/lib/aws-sdk-core/amplify.rb +0 -6
  938. data/lib/aws-sdk-core/api/builder.rb +0 -129
  939. data/lib/aws-sdk-core/api/customizations.rb +0 -299
  940. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  941. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  942. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  943. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  944. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  945. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  946. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  947. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  948. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  949. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  950. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  951. data/lib/aws-sdk-core/apigateway.rb +0 -6
  952. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  953. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  954. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  955. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  956. data/lib/aws-sdk-core/appmesh.rb +0 -6
  957. data/lib/aws-sdk-core/appstream.rb +0 -7
  958. data/lib/aws-sdk-core/appsync.rb +0 -6
  959. data/lib/aws-sdk-core/athena.rb +0 -6
  960. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  961. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  962. data/lib/aws-sdk-core/backup.rb +0 -6
  963. data/lib/aws-sdk-core/batch.rb +0 -6
  964. data/lib/aws-sdk-core/budgets.rb +0 -6
  965. data/lib/aws-sdk-core/checksums.rb +0 -51
  966. data/lib/aws-sdk-core/chime.rb +0 -6
  967. data/lib/aws-sdk-core/client.rb +0 -62
  968. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  969. data/lib/aws-sdk-core/cloud9.rb +0 -6
  970. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  971. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  972. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  973. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  974. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  975. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  976. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  977. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  978. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  979. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  980. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  981. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  982. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  983. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  984. data/lib/aws-sdk-core/codebuild.rb +0 -6
  985. data/lib/aws-sdk-core/codecommit.rb +0 -6
  986. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  987. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  988. data/lib/aws-sdk-core/codestar.rb +0 -6
  989. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  990. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  991. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  992. data/lib/aws-sdk-core/comprehend.rb +0 -6
  993. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  994. data/lib/aws-sdk-core/configservice.rb +0 -6
  995. data/lib/aws-sdk-core/connect.rb +0 -6
  996. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  997. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  998. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  999. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1000. data/lib/aws-sdk-core/datasync.rb +0 -6
  1001. data/lib/aws-sdk-core/dax.rb +0 -6
  1002. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1003. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1004. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1005. data/lib/aws-sdk-core/dlm.rb +0 -6
  1006. data/lib/aws-sdk-core/docdb.rb +0 -7
  1007. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1008. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1009. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1010. data/lib/aws-sdk-core/ec2.rb +0 -8
  1011. data/lib/aws-sdk-core/ecr.rb +0 -6
  1012. data/lib/aws-sdk-core/ecs.rb +0 -7
  1013. data/lib/aws-sdk-core/efs.rb +0 -6
  1014. data/lib/aws-sdk-core/eks.rb +0 -7
  1015. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1016. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1017. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1018. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1019. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1020. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1021. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1022. data/lib/aws-sdk-core/emr.rb +0 -7
  1023. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  1024. data/lib/aws-sdk-core/firehose.rb +0 -6
  1025. data/lib/aws-sdk-core/fms.rb +0 -6
  1026. data/lib/aws-sdk-core/fsx.rb +0 -6
  1027. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1028. data/lib/aws-sdk-core/glacier.rb +0 -8
  1029. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1030. data/lib/aws-sdk-core/glue.rb +0 -6
  1031. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1032. data/lib/aws-sdk-core/guardduty.rb +0 -5
  1033. data/lib/aws-sdk-core/health.rb +0 -6
  1034. data/lib/aws-sdk-core/iam.rb +0 -8
  1035. data/lib/aws-sdk-core/importexport.rb +0 -5
  1036. data/lib/aws-sdk-core/inspector.rb +0 -6
  1037. data/lib/aws-sdk-core/iot.rb +0 -6
  1038. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1039. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1040. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1041. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1042. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1043. data/lib/aws-sdk-core/kafka.rb +0 -5
  1044. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1045. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1046. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1047. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1048. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1049. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1050. data/lib/aws-sdk-core/kms.rb +0 -6
  1051. data/lib/aws-sdk-core/lambda.rb +0 -6
  1052. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1053. data/lib/aws-sdk-core/lex.rb +0 -6
  1054. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1055. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1056. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1057. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1058. data/lib/aws-sdk-core/macie.rb +0 -6
  1059. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1060. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1061. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1062. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1063. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1064. data/lib/aws-sdk-core/medialive.rb +0 -5
  1065. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1066. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1067. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1068. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1069. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1070. data/lib/aws-sdk-core/mobile.rb +0 -6
  1071. data/lib/aws-sdk-core/mq.rb +0 -5
  1072. data/lib/aws-sdk-core/mturk.rb +0 -6
  1073. data/lib/aws-sdk-core/neptune.rb +0 -7
  1074. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1075. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1076. data/lib/aws-sdk-core/organizations.rb +0 -6
  1077. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1078. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1079. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1080. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1081. data/lib/aws-sdk-core/partitions.rb +0 -174
  1082. data/lib/aws-sdk-core/pi.rb +0 -6
  1083. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1084. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1085. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1086. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1087. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1088. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1089. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1090. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1091. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1092. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1093. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1094. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1095. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1096. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1097. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1098. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1099. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1100. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1101. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1102. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1103. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1104. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1105. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1106. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1107. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1108. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1109. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1110. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1111. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1112. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1113. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1114. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1115. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1116. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1117. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1118. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  1119. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1120. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1121. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1122. data/lib/aws-sdk-core/polly.rb +0 -14
  1123. data/lib/aws-sdk-core/pricing.rb +0 -6
  1124. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1125. data/lib/aws-sdk-core/ram.rb +0 -6
  1126. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1127. data/lib/aws-sdk-core/rds.rb +0 -16
  1128. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1129. data/lib/aws-sdk-core/redshift.rb +0 -7
  1130. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1131. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1132. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1133. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1134. data/lib/aws-sdk-core/route53.rb +0 -7
  1135. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1136. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1137. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1138. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1139. data/lib/aws-sdk-core/s3.rb +0 -26
  1140. data/lib/aws-sdk-core/s3control.rb +0 -6
  1141. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1142. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1143. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1144. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1145. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1146. data/lib/aws-sdk-core/service.rb +0 -4
  1147. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1148. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1149. data/lib/aws-sdk-core/ses.rb +0 -7
  1150. data/lib/aws-sdk-core/shield.rb +0 -6
  1151. data/lib/aws-sdk-core/signer.rb +0 -7
  1152. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1153. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1154. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1155. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1156. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1157. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1158. data/lib/aws-sdk-core/sms.rb +0 -6
  1159. data/lib/aws-sdk-core/snowball.rb +0 -6
  1160. data/lib/aws-sdk-core/sns.rb +0 -7
  1161. data/lib/aws-sdk-core/sqs.rb +0 -7
  1162. data/lib/aws-sdk-core/ssm.rb +0 -6
  1163. data/lib/aws-sdk-core/states.rb +0 -6
  1164. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1165. data/lib/aws-sdk-core/sts.rb +0 -6
  1166. data/lib/aws-sdk-core/support.rb +0 -6
  1167. data/lib/aws-sdk-core/swf.rb +0 -6
  1168. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1169. data/lib/aws-sdk-core/transfer.rb +0 -6
  1170. data/lib/aws-sdk-core/translate.rb +0 -6
  1171. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1172. data/lib/aws-sdk-core/version.rb +0 -3
  1173. data/lib/aws-sdk-core/waf.rb +0 -6
  1174. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1175. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1176. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1177. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1178. data/lib/aws-sdk-core/worklink.rb +0 -6
  1179. data/lib/aws-sdk-core/workmail.rb +0 -6
  1180. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1181. data/lib/aws-sdk-core/xray.rb +0 -6
  1182. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1183. data/service-models.json +0 -689
@@ -1,3675 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2015-12-10",
5
- "endpointPrefix":"servicecatalog",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceFullName":"AWS Service Catalog",
9
- "serviceId":"Service Catalog",
10
- "signatureVersion":"v4",
11
- "targetPrefix":"AWS242ServiceCatalogService",
12
- "uid":"servicecatalog-2015-12-10"
13
- },
14
- "operations":{
15
- "AcceptPortfolioShare":{
16
- "name":"AcceptPortfolioShare",
17
- "http":{
18
- "method":"POST",
19
- "requestUri":"/"
20
- },
21
- "input":{"shape":"AcceptPortfolioShareInput"},
22
- "output":{"shape":"AcceptPortfolioShareOutput"},
23
- "errors":[
24
- {"shape":"InvalidParametersException"},
25
- {"shape":"ResourceNotFoundException"},
26
- {"shape":"LimitExceededException"}
27
- ]
28
- },
29
- "AssociatePrincipalWithPortfolio":{
30
- "name":"AssociatePrincipalWithPortfolio",
31
- "http":{
32
- "method":"POST",
33
- "requestUri":"/"
34
- },
35
- "input":{"shape":"AssociatePrincipalWithPortfolioInput"},
36
- "output":{"shape":"AssociatePrincipalWithPortfolioOutput"},
37
- "errors":[
38
- {"shape":"InvalidParametersException"},
39
- {"shape":"ResourceNotFoundException"},
40
- {"shape":"LimitExceededException"}
41
- ]
42
- },
43
- "AssociateProductWithPortfolio":{
44
- "name":"AssociateProductWithPortfolio",
45
- "http":{
46
- "method":"POST",
47
- "requestUri":"/"
48
- },
49
- "input":{"shape":"AssociateProductWithPortfolioInput"},
50
- "output":{"shape":"AssociateProductWithPortfolioOutput"},
51
- "errors":[
52
- {"shape":"InvalidParametersException"},
53
- {"shape":"ResourceNotFoundException"},
54
- {"shape":"LimitExceededException"}
55
- ]
56
- },
57
- "AssociateServiceActionWithProvisioningArtifact":{
58
- "name":"AssociateServiceActionWithProvisioningArtifact",
59
- "http":{
60
- "method":"POST",
61
- "requestUri":"/"
62
- },
63
- "input":{"shape":"AssociateServiceActionWithProvisioningArtifactInput"},
64
- "output":{"shape":"AssociateServiceActionWithProvisioningArtifactOutput"},
65
- "errors":[
66
- {"shape":"ResourceNotFoundException"},
67
- {"shape":"DuplicateResourceException"},
68
- {"shape":"LimitExceededException"}
69
- ]
70
- },
71
- "AssociateTagOptionWithResource":{
72
- "name":"AssociateTagOptionWithResource",
73
- "http":{
74
- "method":"POST",
75
- "requestUri":"/"
76
- },
77
- "input":{"shape":"AssociateTagOptionWithResourceInput"},
78
- "output":{"shape":"AssociateTagOptionWithResourceOutput"},
79
- "errors":[
80
- {"shape":"TagOptionNotMigratedException"},
81
- {"shape":"ResourceNotFoundException"},
82
- {"shape":"InvalidParametersException"},
83
- {"shape":"LimitExceededException"},
84
- {"shape":"DuplicateResourceException"},
85
- {"shape":"InvalidStateException"}
86
- ]
87
- },
88
- "BatchAssociateServiceActionWithProvisioningArtifact":{
89
- "name":"BatchAssociateServiceActionWithProvisioningArtifact",
90
- "http":{
91
- "method":"POST",
92
- "requestUri":"/"
93
- },
94
- "input":{"shape":"BatchAssociateServiceActionWithProvisioningArtifactInput"},
95
- "output":{"shape":"BatchAssociateServiceActionWithProvisioningArtifactOutput"},
96
- "errors":[
97
- {"shape":"InvalidParametersException"}
98
- ]
99
- },
100
- "BatchDisassociateServiceActionFromProvisioningArtifact":{
101
- "name":"BatchDisassociateServiceActionFromProvisioningArtifact",
102
- "http":{
103
- "method":"POST",
104
- "requestUri":"/"
105
- },
106
- "input":{"shape":"BatchDisassociateServiceActionFromProvisioningArtifactInput"},
107
- "output":{"shape":"BatchDisassociateServiceActionFromProvisioningArtifactOutput"},
108
- "errors":[
109
- {"shape":"InvalidParametersException"}
110
- ]
111
- },
112
- "CopyProduct":{
113
- "name":"CopyProduct",
114
- "http":{
115
- "method":"POST",
116
- "requestUri":"/"
117
- },
118
- "input":{"shape":"CopyProductInput"},
119
- "output":{"shape":"CopyProductOutput"},
120
- "errors":[
121
- {"shape":"ResourceNotFoundException"},
122
- {"shape":"InvalidParametersException"}
123
- ]
124
- },
125
- "CreateConstraint":{
126
- "name":"CreateConstraint",
127
- "http":{
128
- "method":"POST",
129
- "requestUri":"/"
130
- },
131
- "input":{"shape":"CreateConstraintInput"},
132
- "output":{"shape":"CreateConstraintOutput"},
133
- "errors":[
134
- {"shape":"ResourceNotFoundException"},
135
- {"shape":"InvalidParametersException"},
136
- {"shape":"LimitExceededException"},
137
- {"shape":"DuplicateResourceException"}
138
- ]
139
- },
140
- "CreatePortfolio":{
141
- "name":"CreatePortfolio",
142
- "http":{
143
- "method":"POST",
144
- "requestUri":"/"
145
- },
146
- "input":{"shape":"CreatePortfolioInput"},
147
- "output":{"shape":"CreatePortfolioOutput"},
148
- "errors":[
149
- {"shape":"InvalidParametersException"},
150
- {"shape":"LimitExceededException"},
151
- {"shape":"TagOptionNotMigratedException"}
152
- ]
153
- },
154
- "CreatePortfolioShare":{
155
- "name":"CreatePortfolioShare",
156
- "http":{
157
- "method":"POST",
158
- "requestUri":"/"
159
- },
160
- "input":{"shape":"CreatePortfolioShareInput"},
161
- "output":{"shape":"CreatePortfolioShareOutput"},
162
- "errors":[
163
- {"shape":"ResourceNotFoundException"},
164
- {"shape":"LimitExceededException"},
165
- {"shape":"InvalidParametersException"},
166
- {"shape":"OperationNotSupportedException"}
167
- ]
168
- },
169
- "CreateProduct":{
170
- "name":"CreateProduct",
171
- "http":{
172
- "method":"POST",
173
- "requestUri":"/"
174
- },
175
- "input":{"shape":"CreateProductInput"},
176
- "output":{"shape":"CreateProductOutput"},
177
- "errors":[
178
- {"shape":"InvalidParametersException"},
179
- {"shape":"LimitExceededException"},
180
- {"shape":"TagOptionNotMigratedException"}
181
- ]
182
- },
183
- "CreateProvisionedProductPlan":{
184
- "name":"CreateProvisionedProductPlan",
185
- "http":{
186
- "method":"POST",
187
- "requestUri":"/"
188
- },
189
- "input":{"shape":"CreateProvisionedProductPlanInput"},
190
- "output":{"shape":"CreateProvisionedProductPlanOutput"},
191
- "errors":[
192
- {"shape":"InvalidParametersException"},
193
- {"shape":"ResourceNotFoundException"},
194
- {"shape":"InvalidStateException"}
195
- ]
196
- },
197
- "CreateProvisioningArtifact":{
198
- "name":"CreateProvisioningArtifact",
199
- "http":{
200
- "method":"POST",
201
- "requestUri":"/"
202
- },
203
- "input":{"shape":"CreateProvisioningArtifactInput"},
204
- "output":{"shape":"CreateProvisioningArtifactOutput"},
205
- "errors":[
206
- {"shape":"ResourceNotFoundException"},
207
- {"shape":"InvalidParametersException"},
208
- {"shape":"LimitExceededException"}
209
- ]
210
- },
211
- "CreateServiceAction":{
212
- "name":"CreateServiceAction",
213
- "http":{
214
- "method":"POST",
215
- "requestUri":"/"
216
- },
217
- "input":{"shape":"CreateServiceActionInput"},
218
- "output":{"shape":"CreateServiceActionOutput"},
219
- "errors":[
220
- {"shape":"InvalidParametersException"},
221
- {"shape":"LimitExceededException"}
222
- ]
223
- },
224
- "CreateTagOption":{
225
- "name":"CreateTagOption",
226
- "http":{
227
- "method":"POST",
228
- "requestUri":"/"
229
- },
230
- "input":{"shape":"CreateTagOptionInput"},
231
- "output":{"shape":"CreateTagOptionOutput"},
232
- "errors":[
233
- {"shape":"TagOptionNotMigratedException"},
234
- {"shape":"DuplicateResourceException"},
235
- {"shape":"LimitExceededException"}
236
- ]
237
- },
238
- "DeleteConstraint":{
239
- "name":"DeleteConstraint",
240
- "http":{
241
- "method":"POST",
242
- "requestUri":"/"
243
- },
244
- "input":{"shape":"DeleteConstraintInput"},
245
- "output":{"shape":"DeleteConstraintOutput"},
246
- "errors":[
247
- {"shape":"ResourceNotFoundException"},
248
- {"shape":"InvalidParametersException"}
249
- ]
250
- },
251
- "DeletePortfolio":{
252
- "name":"DeletePortfolio",
253
- "http":{
254
- "method":"POST",
255
- "requestUri":"/"
256
- },
257
- "input":{"shape":"DeletePortfolioInput"},
258
- "output":{"shape":"DeletePortfolioOutput"},
259
- "errors":[
260
- {"shape":"ResourceNotFoundException"},
261
- {"shape":"InvalidParametersException"},
262
- {"shape":"ResourceInUseException"},
263
- {"shape":"TagOptionNotMigratedException"}
264
- ]
265
- },
266
- "DeletePortfolioShare":{
267
- "name":"DeletePortfolioShare",
268
- "http":{
269
- "method":"POST",
270
- "requestUri":"/"
271
- },
272
- "input":{"shape":"DeletePortfolioShareInput"},
273
- "output":{"shape":"DeletePortfolioShareOutput"},
274
- "errors":[
275
- {"shape":"ResourceNotFoundException"},
276
- {"shape":"InvalidParametersException"},
277
- {"shape":"OperationNotSupportedException"}
278
- ]
279
- },
280
- "DeleteProduct":{
281
- "name":"DeleteProduct",
282
- "http":{
283
- "method":"POST",
284
- "requestUri":"/"
285
- },
286
- "input":{"shape":"DeleteProductInput"},
287
- "output":{"shape":"DeleteProductOutput"},
288
- "errors":[
289
- {"shape":"ResourceNotFoundException"},
290
- {"shape":"ResourceInUseException"},
291
- {"shape":"InvalidParametersException"},
292
- {"shape":"TagOptionNotMigratedException"}
293
- ]
294
- },
295
- "DeleteProvisionedProductPlan":{
296
- "name":"DeleteProvisionedProductPlan",
297
- "http":{
298
- "method":"POST",
299
- "requestUri":"/"
300
- },
301
- "input":{"shape":"DeleteProvisionedProductPlanInput"},
302
- "output":{"shape":"DeleteProvisionedProductPlanOutput"},
303
- "errors":[
304
- {"shape":"InvalidParametersException"},
305
- {"shape":"ResourceNotFoundException"}
306
- ]
307
- },
308
- "DeleteProvisioningArtifact":{
309
- "name":"DeleteProvisioningArtifact",
310
- "http":{
311
- "method":"POST",
312
- "requestUri":"/"
313
- },
314
- "input":{"shape":"DeleteProvisioningArtifactInput"},
315
- "output":{"shape":"DeleteProvisioningArtifactOutput"},
316
- "errors":[
317
- {"shape":"ResourceNotFoundException"},
318
- {"shape":"ResourceInUseException"},
319
- {"shape":"InvalidParametersException"}
320
- ]
321
- },
322
- "DeleteServiceAction":{
323
- "name":"DeleteServiceAction",
324
- "http":{
325
- "method":"POST",
326
- "requestUri":"/"
327
- },
328
- "input":{"shape":"DeleteServiceActionInput"},
329
- "output":{"shape":"DeleteServiceActionOutput"},
330
- "errors":[
331
- {"shape":"ResourceNotFoundException"},
332
- {"shape":"ResourceInUseException"}
333
- ]
334
- },
335
- "DeleteTagOption":{
336
- "name":"DeleteTagOption",
337
- "http":{
338
- "method":"POST",
339
- "requestUri":"/"
340
- },
341
- "input":{"shape":"DeleteTagOptionInput"},
342
- "output":{"shape":"DeleteTagOptionOutput"},
343
- "errors":[
344
- {"shape":"TagOptionNotMigratedException"},
345
- {"shape":"ResourceInUseException"},
346
- {"shape":"ResourceNotFoundException"}
347
- ]
348
- },
349
- "DescribeConstraint":{
350
- "name":"DescribeConstraint",
351
- "http":{
352
- "method":"POST",
353
- "requestUri":"/"
354
- },
355
- "input":{"shape":"DescribeConstraintInput"},
356
- "output":{"shape":"DescribeConstraintOutput"},
357
- "errors":[
358
- {"shape":"ResourceNotFoundException"}
359
- ]
360
- },
361
- "DescribeCopyProductStatus":{
362
- "name":"DescribeCopyProductStatus",
363
- "http":{
364
- "method":"POST",
365
- "requestUri":"/"
366
- },
367
- "input":{"shape":"DescribeCopyProductStatusInput"},
368
- "output":{"shape":"DescribeCopyProductStatusOutput"},
369
- "errors":[
370
- {"shape":"ResourceNotFoundException"}
371
- ]
372
- },
373
- "DescribePortfolio":{
374
- "name":"DescribePortfolio",
375
- "http":{
376
- "method":"POST",
377
- "requestUri":"/"
378
- },
379
- "input":{"shape":"DescribePortfolioInput"},
380
- "output":{"shape":"DescribePortfolioOutput"},
381
- "errors":[
382
- {"shape":"ResourceNotFoundException"}
383
- ]
384
- },
385
- "DescribePortfolioShareStatus":{
386
- "name":"DescribePortfolioShareStatus",
387
- "http":{
388
- "method":"POST",
389
- "requestUri":"/"
390
- },
391
- "input":{"shape":"DescribePortfolioShareStatusInput"},
392
- "output":{"shape":"DescribePortfolioShareStatusOutput"},
393
- "errors":[
394
- {"shape":"ResourceNotFoundException"},
395
- {"shape":"InvalidParametersException"},
396
- {"shape":"OperationNotSupportedException"}
397
- ]
398
- },
399
- "DescribeProduct":{
400
- "name":"DescribeProduct",
401
- "http":{
402
- "method":"POST",
403
- "requestUri":"/"
404
- },
405
- "input":{"shape":"DescribeProductInput"},
406
- "output":{"shape":"DescribeProductOutput"},
407
- "errors":[
408
- {"shape":"ResourceNotFoundException"},
409
- {"shape":"InvalidParametersException"}
410
- ]
411
- },
412
- "DescribeProductAsAdmin":{
413
- "name":"DescribeProductAsAdmin",
414
- "http":{
415
- "method":"POST",
416
- "requestUri":"/"
417
- },
418
- "input":{"shape":"DescribeProductAsAdminInput"},
419
- "output":{"shape":"DescribeProductAsAdminOutput"},
420
- "errors":[
421
- {"shape":"ResourceNotFoundException"}
422
- ]
423
- },
424
- "DescribeProductView":{
425
- "name":"DescribeProductView",
426
- "http":{
427
- "method":"POST",
428
- "requestUri":"/"
429
- },
430
- "input":{"shape":"DescribeProductViewInput"},
431
- "output":{"shape":"DescribeProductViewOutput"},
432
- "errors":[
433
- {"shape":"ResourceNotFoundException"},
434
- {"shape":"InvalidParametersException"}
435
- ]
436
- },
437
- "DescribeProvisionedProduct":{
438
- "name":"DescribeProvisionedProduct",
439
- "http":{
440
- "method":"POST",
441
- "requestUri":"/"
442
- },
443
- "input":{"shape":"DescribeProvisionedProductInput"},
444
- "output":{"shape":"DescribeProvisionedProductOutput"},
445
- "errors":[
446
- {"shape":"ResourceNotFoundException"}
447
- ]
448
- },
449
- "DescribeProvisionedProductPlan":{
450
- "name":"DescribeProvisionedProductPlan",
451
- "http":{
452
- "method":"POST",
453
- "requestUri":"/"
454
- },
455
- "input":{"shape":"DescribeProvisionedProductPlanInput"},
456
- "output":{"shape":"DescribeProvisionedProductPlanOutput"},
457
- "errors":[
458
- {"shape":"ResourceNotFoundException"},
459
- {"shape":"InvalidParametersException"}
460
- ]
461
- },
462
- "DescribeProvisioningArtifact":{
463
- "name":"DescribeProvisioningArtifact",
464
- "http":{
465
- "method":"POST",
466
- "requestUri":"/"
467
- },
468
- "input":{"shape":"DescribeProvisioningArtifactInput"},
469
- "output":{"shape":"DescribeProvisioningArtifactOutput"},
470
- "errors":[
471
- {"shape":"ResourceNotFoundException"}
472
- ]
473
- },
474
- "DescribeProvisioningParameters":{
475
- "name":"DescribeProvisioningParameters",
476
- "http":{
477
- "method":"POST",
478
- "requestUri":"/"
479
- },
480
- "input":{"shape":"DescribeProvisioningParametersInput"},
481
- "output":{"shape":"DescribeProvisioningParametersOutput"},
482
- "errors":[
483
- {"shape":"InvalidParametersException"},
484
- {"shape":"ResourceNotFoundException"}
485
- ]
486
- },
487
- "DescribeRecord":{
488
- "name":"DescribeRecord",
489
- "http":{
490
- "method":"POST",
491
- "requestUri":"/"
492
- },
493
- "input":{"shape":"DescribeRecordInput"},
494
- "output":{"shape":"DescribeRecordOutput"},
495
- "errors":[
496
- {"shape":"ResourceNotFoundException"}
497
- ]
498
- },
499
- "DescribeServiceAction":{
500
- "name":"DescribeServiceAction",
501
- "http":{
502
- "method":"POST",
503
- "requestUri":"/"
504
- },
505
- "input":{"shape":"DescribeServiceActionInput"},
506
- "output":{"shape":"DescribeServiceActionOutput"},
507
- "errors":[
508
- {"shape":"ResourceNotFoundException"}
509
- ]
510
- },
511
- "DescribeTagOption":{
512
- "name":"DescribeTagOption",
513
- "http":{
514
- "method":"POST",
515
- "requestUri":"/"
516
- },
517
- "input":{"shape":"DescribeTagOptionInput"},
518
- "output":{"shape":"DescribeTagOptionOutput"},
519
- "errors":[
520
- {"shape":"TagOptionNotMigratedException"},
521
- {"shape":"ResourceNotFoundException"}
522
- ]
523
- },
524
- "DisableAWSOrganizationsAccess":{
525
- "name":"DisableAWSOrganizationsAccess",
526
- "http":{
527
- "method":"POST",
528
- "requestUri":"/"
529
- },
530
- "input":{"shape":"DisableAWSOrganizationsAccessInput"},
531
- "output":{"shape":"DisableAWSOrganizationsAccessOutput"},
532
- "errors":[
533
- {"shape":"ResourceNotFoundException"},
534
- {"shape":"InvalidStateException"},
535
- {"shape":"OperationNotSupportedException"}
536
- ]
537
- },
538
- "DisassociatePrincipalFromPortfolio":{
539
- "name":"DisassociatePrincipalFromPortfolio",
540
- "http":{
541
- "method":"POST",
542
- "requestUri":"/"
543
- },
544
- "input":{"shape":"DisassociatePrincipalFromPortfolioInput"},
545
- "output":{"shape":"DisassociatePrincipalFromPortfolioOutput"},
546
- "errors":[
547
- {"shape":"InvalidParametersException"},
548
- {"shape":"ResourceNotFoundException"}
549
- ]
550
- },
551
- "DisassociateProductFromPortfolio":{
552
- "name":"DisassociateProductFromPortfolio",
553
- "http":{
554
- "method":"POST",
555
- "requestUri":"/"
556
- },
557
- "input":{"shape":"DisassociateProductFromPortfolioInput"},
558
- "output":{"shape":"DisassociateProductFromPortfolioOutput"},
559
- "errors":[
560
- {"shape":"ResourceNotFoundException"},
561
- {"shape":"ResourceInUseException"},
562
- {"shape":"InvalidParametersException"}
563
- ]
564
- },
565
- "DisassociateServiceActionFromProvisioningArtifact":{
566
- "name":"DisassociateServiceActionFromProvisioningArtifact",
567
- "http":{
568
- "method":"POST",
569
- "requestUri":"/"
570
- },
571
- "input":{"shape":"DisassociateServiceActionFromProvisioningArtifactInput"},
572
- "output":{"shape":"DisassociateServiceActionFromProvisioningArtifactOutput"},
573
- "errors":[
574
- {"shape":"ResourceNotFoundException"}
575
- ]
576
- },
577
- "DisassociateTagOptionFromResource":{
578
- "name":"DisassociateTagOptionFromResource",
579
- "http":{
580
- "method":"POST",
581
- "requestUri":"/"
582
- },
583
- "input":{"shape":"DisassociateTagOptionFromResourceInput"},
584
- "output":{"shape":"DisassociateTagOptionFromResourceOutput"},
585
- "errors":[
586
- {"shape":"TagOptionNotMigratedException"},
587
- {"shape":"ResourceNotFoundException"}
588
- ]
589
- },
590
- "EnableAWSOrganizationsAccess":{
591
- "name":"EnableAWSOrganizationsAccess",
592
- "http":{
593
- "method":"POST",
594
- "requestUri":"/"
595
- },
596
- "input":{"shape":"EnableAWSOrganizationsAccessInput"},
597
- "output":{"shape":"EnableAWSOrganizationsAccessOutput"},
598
- "errors":[
599
- {"shape":"ResourceNotFoundException"},
600
- {"shape":"InvalidStateException"},
601
- {"shape":"OperationNotSupportedException"}
602
- ]
603
- },
604
- "ExecuteProvisionedProductPlan":{
605
- "name":"ExecuteProvisionedProductPlan",
606
- "http":{
607
- "method":"POST",
608
- "requestUri":"/"
609
- },
610
- "input":{"shape":"ExecuteProvisionedProductPlanInput"},
611
- "output":{"shape":"ExecuteProvisionedProductPlanOutput"},
612
- "errors":[
613
- {"shape":"InvalidParametersException"},
614
- {"shape":"ResourceNotFoundException"},
615
- {"shape":"InvalidStateException"}
616
- ]
617
- },
618
- "ExecuteProvisionedProductServiceAction":{
619
- "name":"ExecuteProvisionedProductServiceAction",
620
- "http":{
621
- "method":"POST",
622
- "requestUri":"/"
623
- },
624
- "input":{"shape":"ExecuteProvisionedProductServiceActionInput"},
625
- "output":{"shape":"ExecuteProvisionedProductServiceActionOutput"},
626
- "errors":[
627
- {"shape":"InvalidParametersException"},
628
- {"shape":"ResourceNotFoundException"},
629
- {"shape":"InvalidStateException"}
630
- ]
631
- },
632
- "GetAWSOrganizationsAccessStatus":{
633
- "name":"GetAWSOrganizationsAccessStatus",
634
- "http":{
635
- "method":"POST",
636
- "requestUri":"/"
637
- },
638
- "input":{"shape":"GetAWSOrganizationsAccessStatusInput"},
639
- "output":{"shape":"GetAWSOrganizationsAccessStatusOutput"},
640
- "errors":[
641
- {"shape":"ResourceNotFoundException"},
642
- {"shape":"OperationNotSupportedException"}
643
- ]
644
- },
645
- "ListAcceptedPortfolioShares":{
646
- "name":"ListAcceptedPortfolioShares",
647
- "http":{
648
- "method":"POST",
649
- "requestUri":"/"
650
- },
651
- "input":{"shape":"ListAcceptedPortfolioSharesInput"},
652
- "output":{"shape":"ListAcceptedPortfolioSharesOutput"},
653
- "errors":[
654
- {"shape":"InvalidParametersException"},
655
- {"shape":"OperationNotSupportedException"}
656
- ]
657
- },
658
- "ListConstraintsForPortfolio":{
659
- "name":"ListConstraintsForPortfolio",
660
- "http":{
661
- "method":"POST",
662
- "requestUri":"/"
663
- },
664
- "input":{"shape":"ListConstraintsForPortfolioInput"},
665
- "output":{"shape":"ListConstraintsForPortfolioOutput"},
666
- "errors":[
667
- {"shape":"ResourceNotFoundException"},
668
- {"shape":"InvalidParametersException"}
669
- ]
670
- },
671
- "ListLaunchPaths":{
672
- "name":"ListLaunchPaths",
673
- "http":{
674
- "method":"POST",
675
- "requestUri":"/"
676
- },
677
- "input":{"shape":"ListLaunchPathsInput"},
678
- "output":{"shape":"ListLaunchPathsOutput"},
679
- "errors":[
680
- {"shape":"InvalidParametersException"},
681
- {"shape":"ResourceNotFoundException"}
682
- ]
683
- },
684
- "ListOrganizationPortfolioAccess":{
685
- "name":"ListOrganizationPortfolioAccess",
686
- "http":{
687
- "method":"POST",
688
- "requestUri":"/"
689
- },
690
- "input":{"shape":"ListOrganizationPortfolioAccessInput"},
691
- "output":{"shape":"ListOrganizationPortfolioAccessOutput"},
692
- "errors":[
693
- {"shape":"ResourceNotFoundException"},
694
- {"shape":"InvalidParametersException"},
695
- {"shape":"OperationNotSupportedException"}
696
- ]
697
- },
698
- "ListPortfolioAccess":{
699
- "name":"ListPortfolioAccess",
700
- "http":{
701
- "method":"POST",
702
- "requestUri":"/"
703
- },
704
- "input":{"shape":"ListPortfolioAccessInput"},
705
- "output":{"shape":"ListPortfolioAccessOutput"},
706
- "errors":[
707
- {"shape":"ResourceNotFoundException"}
708
- ]
709
- },
710
- "ListPortfolios":{
711
- "name":"ListPortfolios",
712
- "http":{
713
- "method":"POST",
714
- "requestUri":"/"
715
- },
716
- "input":{"shape":"ListPortfoliosInput"},
717
- "output":{"shape":"ListPortfoliosOutput"},
718
- "errors":[
719
- {"shape":"InvalidParametersException"}
720
- ]
721
- },
722
- "ListPortfoliosForProduct":{
723
- "name":"ListPortfoliosForProduct",
724
- "http":{
725
- "method":"POST",
726
- "requestUri":"/"
727
- },
728
- "input":{"shape":"ListPortfoliosForProductInput"},
729
- "output":{"shape":"ListPortfoliosForProductOutput"},
730
- "errors":[
731
- {"shape":"InvalidParametersException"},
732
- {"shape":"ResourceNotFoundException"}
733
- ]
734
- },
735
- "ListPrincipalsForPortfolio":{
736
- "name":"ListPrincipalsForPortfolio",
737
- "http":{
738
- "method":"POST",
739
- "requestUri":"/"
740
- },
741
- "input":{"shape":"ListPrincipalsForPortfolioInput"},
742
- "output":{"shape":"ListPrincipalsForPortfolioOutput"},
743
- "errors":[
744
- {"shape":"ResourceNotFoundException"},
745
- {"shape":"InvalidParametersException"}
746
- ]
747
- },
748
- "ListProvisionedProductPlans":{
749
- "name":"ListProvisionedProductPlans",
750
- "http":{
751
- "method":"POST",
752
- "requestUri":"/"
753
- },
754
- "input":{"shape":"ListProvisionedProductPlansInput"},
755
- "output":{"shape":"ListProvisionedProductPlansOutput"},
756
- "errors":[
757
- {"shape":"ResourceNotFoundException"},
758
- {"shape":"InvalidParametersException"}
759
- ]
760
- },
761
- "ListProvisioningArtifacts":{
762
- "name":"ListProvisioningArtifacts",
763
- "http":{
764
- "method":"POST",
765
- "requestUri":"/"
766
- },
767
- "input":{"shape":"ListProvisioningArtifactsInput"},
768
- "output":{"shape":"ListProvisioningArtifactsOutput"},
769
- "errors":[
770
- {"shape":"ResourceNotFoundException"},
771
- {"shape":"InvalidParametersException"}
772
- ]
773
- },
774
- "ListProvisioningArtifactsForServiceAction":{
775
- "name":"ListProvisioningArtifactsForServiceAction",
776
- "http":{
777
- "method":"POST",
778
- "requestUri":"/"
779
- },
780
- "input":{"shape":"ListProvisioningArtifactsForServiceActionInput"},
781
- "output":{"shape":"ListProvisioningArtifactsForServiceActionOutput"},
782
- "errors":[
783
- {"shape":"ResourceNotFoundException"},
784
- {"shape":"InvalidParametersException"}
785
- ]
786
- },
787
- "ListRecordHistory":{
788
- "name":"ListRecordHistory",
789
- "http":{
790
- "method":"POST",
791
- "requestUri":"/"
792
- },
793
- "input":{"shape":"ListRecordHistoryInput"},
794
- "output":{"shape":"ListRecordHistoryOutput"},
795
- "errors":[
796
- {"shape":"InvalidParametersException"}
797
- ]
798
- },
799
- "ListResourcesForTagOption":{
800
- "name":"ListResourcesForTagOption",
801
- "http":{
802
- "method":"POST",
803
- "requestUri":"/"
804
- },
805
- "input":{"shape":"ListResourcesForTagOptionInput"},
806
- "output":{"shape":"ListResourcesForTagOptionOutput"},
807
- "errors":[
808
- {"shape":"TagOptionNotMigratedException"},
809
- {"shape":"ResourceNotFoundException"},
810
- {"shape":"InvalidParametersException"}
811
- ]
812
- },
813
- "ListServiceActions":{
814
- "name":"ListServiceActions",
815
- "http":{
816
- "method":"POST",
817
- "requestUri":"/"
818
- },
819
- "input":{"shape":"ListServiceActionsInput"},
820
- "output":{"shape":"ListServiceActionsOutput"},
821
- "errors":[
822
- {"shape":"InvalidParametersException"}
823
- ]
824
- },
825
- "ListServiceActionsForProvisioningArtifact":{
826
- "name":"ListServiceActionsForProvisioningArtifact",
827
- "http":{
828
- "method":"POST",
829
- "requestUri":"/"
830
- },
831
- "input":{"shape":"ListServiceActionsForProvisioningArtifactInput"},
832
- "output":{"shape":"ListServiceActionsForProvisioningArtifactOutput"},
833
- "errors":[
834
- {"shape":"ResourceNotFoundException"},
835
- {"shape":"InvalidParametersException"}
836
- ]
837
- },
838
- "ListTagOptions":{
839
- "name":"ListTagOptions",
840
- "http":{
841
- "method":"POST",
842
- "requestUri":"/"
843
- },
844
- "input":{"shape":"ListTagOptionsInput"},
845
- "output":{"shape":"ListTagOptionsOutput"},
846
- "errors":[
847
- {"shape":"TagOptionNotMigratedException"},
848
- {"shape":"InvalidParametersException"}
849
- ]
850
- },
851
- "ProvisionProduct":{
852
- "name":"ProvisionProduct",
853
- "http":{
854
- "method":"POST",
855
- "requestUri":"/"
856
- },
857
- "input":{"shape":"ProvisionProductInput"},
858
- "output":{"shape":"ProvisionProductOutput"},
859
- "errors":[
860
- {"shape":"InvalidParametersException"},
861
- {"shape":"ResourceNotFoundException"},
862
- {"shape":"DuplicateResourceException"}
863
- ]
864
- },
865
- "RejectPortfolioShare":{
866
- "name":"RejectPortfolioShare",
867
- "http":{
868
- "method":"POST",
869
- "requestUri":"/"
870
- },
871
- "input":{"shape":"RejectPortfolioShareInput"},
872
- "output":{"shape":"RejectPortfolioShareOutput"},
873
- "errors":[
874
- {"shape":"ResourceNotFoundException"}
875
- ]
876
- },
877
- "ScanProvisionedProducts":{
878
- "name":"ScanProvisionedProducts",
879
- "http":{
880
- "method":"POST",
881
- "requestUri":"/"
882
- },
883
- "input":{"shape":"ScanProvisionedProductsInput"},
884
- "output":{"shape":"ScanProvisionedProductsOutput"},
885
- "errors":[
886
- {"shape":"InvalidParametersException"}
887
- ]
888
- },
889
- "SearchProducts":{
890
- "name":"SearchProducts",
891
- "http":{
892
- "method":"POST",
893
- "requestUri":"/"
894
- },
895
- "input":{"shape":"SearchProductsInput"},
896
- "output":{"shape":"SearchProductsOutput"},
897
- "errors":[
898
- {"shape":"InvalidParametersException"}
899
- ]
900
- },
901
- "SearchProductsAsAdmin":{
902
- "name":"SearchProductsAsAdmin",
903
- "http":{
904
- "method":"POST",
905
- "requestUri":"/"
906
- },
907
- "input":{"shape":"SearchProductsAsAdminInput"},
908
- "output":{"shape":"SearchProductsAsAdminOutput"},
909
- "errors":[
910
- {"shape":"ResourceNotFoundException"},
911
- {"shape":"InvalidParametersException"}
912
- ]
913
- },
914
- "SearchProvisionedProducts":{
915
- "name":"SearchProvisionedProducts",
916
- "http":{
917
- "method":"POST",
918
- "requestUri":"/"
919
- },
920
- "input":{"shape":"SearchProvisionedProductsInput"},
921
- "output":{"shape":"SearchProvisionedProductsOutput"},
922
- "errors":[
923
- {"shape":"InvalidParametersException"}
924
- ]
925
- },
926
- "TerminateProvisionedProduct":{
927
- "name":"TerminateProvisionedProduct",
928
- "http":{
929
- "method":"POST",
930
- "requestUri":"/"
931
- },
932
- "input":{"shape":"TerminateProvisionedProductInput"},
933
- "output":{"shape":"TerminateProvisionedProductOutput"},
934
- "errors":[
935
- {"shape":"ResourceNotFoundException"}
936
- ]
937
- },
938
- "UpdateConstraint":{
939
- "name":"UpdateConstraint",
940
- "http":{
941
- "method":"POST",
942
- "requestUri":"/"
943
- },
944
- "input":{"shape":"UpdateConstraintInput"},
945
- "output":{"shape":"UpdateConstraintOutput"},
946
- "errors":[
947
- {"shape":"ResourceNotFoundException"},
948
- {"shape":"InvalidParametersException"}
949
- ]
950
- },
951
- "UpdatePortfolio":{
952
- "name":"UpdatePortfolio",
953
- "http":{
954
- "method":"POST",
955
- "requestUri":"/"
956
- },
957
- "input":{"shape":"UpdatePortfolioInput"},
958
- "output":{"shape":"UpdatePortfolioOutput"},
959
- "errors":[
960
- {"shape":"InvalidParametersException"},
961
- {"shape":"ResourceNotFoundException"},
962
- {"shape":"LimitExceededException"},
963
- {"shape":"TagOptionNotMigratedException"}
964
- ]
965
- },
966
- "UpdateProduct":{
967
- "name":"UpdateProduct",
968
- "http":{
969
- "method":"POST",
970
- "requestUri":"/"
971
- },
972
- "input":{"shape":"UpdateProductInput"},
973
- "output":{"shape":"UpdateProductOutput"},
974
- "errors":[
975
- {"shape":"ResourceNotFoundException"},
976
- {"shape":"InvalidParametersException"},
977
- {"shape":"TagOptionNotMigratedException"}
978
- ]
979
- },
980
- "UpdateProvisionedProduct":{
981
- "name":"UpdateProvisionedProduct",
982
- "http":{
983
- "method":"POST",
984
- "requestUri":"/"
985
- },
986
- "input":{"shape":"UpdateProvisionedProductInput"},
987
- "output":{"shape":"UpdateProvisionedProductOutput"},
988
- "errors":[
989
- {"shape":"InvalidParametersException"},
990
- {"shape":"ResourceNotFoundException"}
991
- ]
992
- },
993
- "UpdateProvisioningArtifact":{
994
- "name":"UpdateProvisioningArtifact",
995
- "http":{
996
- "method":"POST",
997
- "requestUri":"/"
998
- },
999
- "input":{"shape":"UpdateProvisioningArtifactInput"},
1000
- "output":{"shape":"UpdateProvisioningArtifactOutput"},
1001
- "errors":[
1002
- {"shape":"ResourceNotFoundException"},
1003
- {"shape":"InvalidParametersException"}
1004
- ]
1005
- },
1006
- "UpdateServiceAction":{
1007
- "name":"UpdateServiceAction",
1008
- "http":{
1009
- "method":"POST",
1010
- "requestUri":"/"
1011
- },
1012
- "input":{"shape":"UpdateServiceActionInput"},
1013
- "output":{"shape":"UpdateServiceActionOutput"},
1014
- "errors":[
1015
- {"shape":"ResourceNotFoundException"},
1016
- {"shape":"InvalidParametersException"}
1017
- ]
1018
- },
1019
- "UpdateTagOption":{
1020
- "name":"UpdateTagOption",
1021
- "http":{
1022
- "method":"POST",
1023
- "requestUri":"/"
1024
- },
1025
- "input":{"shape":"UpdateTagOptionInput"},
1026
- "output":{"shape":"UpdateTagOptionOutput"},
1027
- "errors":[
1028
- {"shape":"TagOptionNotMigratedException"},
1029
- {"shape":"ResourceNotFoundException"},
1030
- {"shape":"DuplicateResourceException"},
1031
- {"shape":"InvalidParametersException"}
1032
- ]
1033
- }
1034
- },
1035
- "shapes":{
1036
- "AcceptLanguage":{
1037
- "type":"string",
1038
- "max":100
1039
- },
1040
- "AcceptPortfolioShareInput":{
1041
- "type":"structure",
1042
- "required":["PortfolioId"],
1043
- "members":{
1044
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1045
- "PortfolioId":{"shape":"Id"},
1046
- "PortfolioShareType":{"shape":"PortfolioShareType"}
1047
- }
1048
- },
1049
- "AcceptPortfolioShareOutput":{
1050
- "type":"structure",
1051
- "members":{
1052
- }
1053
- },
1054
- "AccessLevelFilter":{
1055
- "type":"structure",
1056
- "members":{
1057
- "Key":{"shape":"AccessLevelFilterKey"},
1058
- "Value":{"shape":"AccessLevelFilterValue"}
1059
- }
1060
- },
1061
- "AccessLevelFilterKey":{
1062
- "type":"string",
1063
- "enum":[
1064
- "Account",
1065
- "Role",
1066
- "User"
1067
- ]
1068
- },
1069
- "AccessLevelFilterValue":{"type":"string"},
1070
- "AccessStatus":{
1071
- "type":"string",
1072
- "enum":[
1073
- "ENABLED",
1074
- "UNDER_CHANGE",
1075
- "DISABLED"
1076
- ]
1077
- },
1078
- "AccountId":{
1079
- "type":"string",
1080
- "pattern":"^[0-9]{12}$"
1081
- },
1082
- "AccountIds":{
1083
- "type":"list",
1084
- "member":{"shape":"AccountId"}
1085
- },
1086
- "AddTags":{
1087
- "type":"list",
1088
- "member":{"shape":"Tag"},
1089
- "max":20
1090
- },
1091
- "AllowedValue":{"type":"string"},
1092
- "AllowedValues":{
1093
- "type":"list",
1094
- "member":{"shape":"AllowedValue"}
1095
- },
1096
- "ApproximateCount":{"type":"integer"},
1097
- "AssociatePrincipalWithPortfolioInput":{
1098
- "type":"structure",
1099
- "required":[
1100
- "PortfolioId",
1101
- "PrincipalARN",
1102
- "PrincipalType"
1103
- ],
1104
- "members":{
1105
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1106
- "PortfolioId":{"shape":"Id"},
1107
- "PrincipalARN":{"shape":"PrincipalARN"},
1108
- "PrincipalType":{"shape":"PrincipalType"}
1109
- }
1110
- },
1111
- "AssociatePrincipalWithPortfolioOutput":{
1112
- "type":"structure",
1113
- "members":{
1114
- }
1115
- },
1116
- "AssociateProductWithPortfolioInput":{
1117
- "type":"structure",
1118
- "required":[
1119
- "ProductId",
1120
- "PortfolioId"
1121
- ],
1122
- "members":{
1123
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1124
- "ProductId":{"shape":"Id"},
1125
- "PortfolioId":{"shape":"Id"},
1126
- "SourcePortfolioId":{"shape":"Id"}
1127
- }
1128
- },
1129
- "AssociateProductWithPortfolioOutput":{
1130
- "type":"structure",
1131
- "members":{
1132
- }
1133
- },
1134
- "AssociateServiceActionWithProvisioningArtifactInput":{
1135
- "type":"structure",
1136
- "required":[
1137
- "ProductId",
1138
- "ProvisioningArtifactId",
1139
- "ServiceActionId"
1140
- ],
1141
- "members":{
1142
- "ProductId":{"shape":"Id"},
1143
- "ProvisioningArtifactId":{"shape":"Id"},
1144
- "ServiceActionId":{"shape":"Id"},
1145
- "AcceptLanguage":{"shape":"AcceptLanguage"}
1146
- }
1147
- },
1148
- "AssociateServiceActionWithProvisioningArtifactOutput":{
1149
- "type":"structure",
1150
- "members":{
1151
- }
1152
- },
1153
- "AssociateTagOptionWithResourceInput":{
1154
- "type":"structure",
1155
- "required":[
1156
- "ResourceId",
1157
- "TagOptionId"
1158
- ],
1159
- "members":{
1160
- "ResourceId":{"shape":"ResourceId"},
1161
- "TagOptionId":{"shape":"TagOptionId"}
1162
- }
1163
- },
1164
- "AssociateTagOptionWithResourceOutput":{
1165
- "type":"structure",
1166
- "members":{
1167
- }
1168
- },
1169
- "AttributeValue":{"type":"string"},
1170
- "BatchAssociateServiceActionWithProvisioningArtifactInput":{
1171
- "type":"structure",
1172
- "required":["ServiceActionAssociations"],
1173
- "members":{
1174
- "ServiceActionAssociations":{"shape":"ServiceActionAssociations"},
1175
- "AcceptLanguage":{"shape":"AcceptLanguage"}
1176
- }
1177
- },
1178
- "BatchAssociateServiceActionWithProvisioningArtifactOutput":{
1179
- "type":"structure",
1180
- "members":{
1181
- "FailedServiceActionAssociations":{"shape":"FailedServiceActionAssociations"}
1182
- }
1183
- },
1184
- "BatchDisassociateServiceActionFromProvisioningArtifactInput":{
1185
- "type":"structure",
1186
- "required":["ServiceActionAssociations"],
1187
- "members":{
1188
- "ServiceActionAssociations":{"shape":"ServiceActionAssociations"},
1189
- "AcceptLanguage":{"shape":"AcceptLanguage"}
1190
- }
1191
- },
1192
- "BatchDisassociateServiceActionFromProvisioningArtifactOutput":{
1193
- "type":"structure",
1194
- "members":{
1195
- "FailedServiceActionAssociations":{"shape":"FailedServiceActionAssociations"}
1196
- }
1197
- },
1198
- "CausingEntity":{"type":"string"},
1199
- "ChangeAction":{
1200
- "type":"string",
1201
- "enum":[
1202
- "ADD",
1203
- "MODIFY",
1204
- "REMOVE"
1205
- ]
1206
- },
1207
- "CloudWatchDashboard":{
1208
- "type":"structure",
1209
- "members":{
1210
- "Name":{"shape":"CloudWatchDashboardName"}
1211
- }
1212
- },
1213
- "CloudWatchDashboardName":{"type":"string"},
1214
- "CloudWatchDashboards":{
1215
- "type":"list",
1216
- "member":{"shape":"CloudWatchDashboard"}
1217
- },
1218
- "ConstraintDescription":{
1219
- "type":"string",
1220
- "max":2000
1221
- },
1222
- "ConstraintDetail":{
1223
- "type":"structure",
1224
- "members":{
1225
- "ConstraintId":{"shape":"Id"},
1226
- "Type":{"shape":"ConstraintType"},
1227
- "Description":{"shape":"ConstraintDescription"},
1228
- "Owner":{"shape":"AccountId"}
1229
- }
1230
- },
1231
- "ConstraintDetails":{
1232
- "type":"list",
1233
- "member":{"shape":"ConstraintDetail"}
1234
- },
1235
- "ConstraintParameters":{"type":"string"},
1236
- "ConstraintSummaries":{
1237
- "type":"list",
1238
- "member":{"shape":"ConstraintSummary"}
1239
- },
1240
- "ConstraintSummary":{
1241
- "type":"structure",
1242
- "members":{
1243
- "Type":{"shape":"ConstraintType"},
1244
- "Description":{"shape":"ConstraintDescription"}
1245
- }
1246
- },
1247
- "ConstraintType":{
1248
- "type":"string",
1249
- "max":1024,
1250
- "min":1
1251
- },
1252
- "CopyOption":{
1253
- "type":"string",
1254
- "enum":["CopyTags"]
1255
- },
1256
- "CopyOptions":{
1257
- "type":"list",
1258
- "member":{"shape":"CopyOption"}
1259
- },
1260
- "CopyProductInput":{
1261
- "type":"structure",
1262
- "required":[
1263
- "SourceProductArn",
1264
- "IdempotencyToken"
1265
- ],
1266
- "members":{
1267
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1268
- "SourceProductArn":{"shape":"ProductArn"},
1269
- "TargetProductId":{"shape":"Id"},
1270
- "TargetProductName":{"shape":"ProductViewName"},
1271
- "SourceProvisioningArtifactIdentifiers":{"shape":"SourceProvisioningArtifactProperties"},
1272
- "CopyOptions":{"shape":"CopyOptions"},
1273
- "IdempotencyToken":{
1274
- "shape":"IdempotencyToken",
1275
- "idempotencyToken":true
1276
- }
1277
- }
1278
- },
1279
- "CopyProductOutput":{
1280
- "type":"structure",
1281
- "members":{
1282
- "CopyProductToken":{"shape":"Id"}
1283
- }
1284
- },
1285
- "CopyProductStatus":{
1286
- "type":"string",
1287
- "enum":[
1288
- "SUCCEEDED",
1289
- "IN_PROGRESS",
1290
- "FAILED"
1291
- ]
1292
- },
1293
- "CreateConstraintInput":{
1294
- "type":"structure",
1295
- "required":[
1296
- "PortfolioId",
1297
- "ProductId",
1298
- "Parameters",
1299
- "Type",
1300
- "IdempotencyToken"
1301
- ],
1302
- "members":{
1303
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1304
- "PortfolioId":{"shape":"Id"},
1305
- "ProductId":{"shape":"Id"},
1306
- "Parameters":{"shape":"ConstraintParameters"},
1307
- "Type":{"shape":"ConstraintType"},
1308
- "Description":{"shape":"ConstraintDescription"},
1309
- "IdempotencyToken":{
1310
- "shape":"IdempotencyToken",
1311
- "idempotencyToken":true
1312
- }
1313
- }
1314
- },
1315
- "CreateConstraintOutput":{
1316
- "type":"structure",
1317
- "members":{
1318
- "ConstraintDetail":{"shape":"ConstraintDetail"},
1319
- "ConstraintParameters":{"shape":"ConstraintParameters"},
1320
- "Status":{"shape":"Status"}
1321
- }
1322
- },
1323
- "CreatePortfolioInput":{
1324
- "type":"structure",
1325
- "required":[
1326
- "DisplayName",
1327
- "ProviderName",
1328
- "IdempotencyToken"
1329
- ],
1330
- "members":{
1331
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1332
- "DisplayName":{"shape":"PortfolioDisplayName"},
1333
- "Description":{"shape":"PortfolioDescription"},
1334
- "ProviderName":{"shape":"ProviderName"},
1335
- "Tags":{"shape":"AddTags"},
1336
- "IdempotencyToken":{
1337
- "shape":"IdempotencyToken",
1338
- "idempotencyToken":true
1339
- }
1340
- }
1341
- },
1342
- "CreatePortfolioOutput":{
1343
- "type":"structure",
1344
- "members":{
1345
- "PortfolioDetail":{"shape":"PortfolioDetail"},
1346
- "Tags":{"shape":"Tags"}
1347
- }
1348
- },
1349
- "CreatePortfolioShareInput":{
1350
- "type":"structure",
1351
- "required":["PortfolioId"],
1352
- "members":{
1353
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1354
- "PortfolioId":{"shape":"Id"},
1355
- "AccountId":{"shape":"AccountId"},
1356
- "OrganizationNode":{"shape":"OrganizationNode"}
1357
- }
1358
- },
1359
- "CreatePortfolioShareOutput":{
1360
- "type":"structure",
1361
- "members":{
1362
- "PortfolioShareToken":{"shape":"PortfolioShareToken"}
1363
- }
1364
- },
1365
- "CreateProductInput":{
1366
- "type":"structure",
1367
- "required":[
1368
- "Name",
1369
- "Owner",
1370
- "ProductType",
1371
- "ProvisioningArtifactParameters",
1372
- "IdempotencyToken"
1373
- ],
1374
- "members":{
1375
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1376
- "Name":{"shape":"ProductViewName"},
1377
- "Owner":{"shape":"ProductViewOwner"},
1378
- "Description":{"shape":"ProductViewShortDescription"},
1379
- "Distributor":{"shape":"ProductViewOwner"},
1380
- "SupportDescription":{"shape":"SupportDescription"},
1381
- "SupportEmail":{"shape":"SupportEmail"},
1382
- "SupportUrl":{"shape":"SupportUrl"},
1383
- "ProductType":{"shape":"ProductType"},
1384
- "Tags":{"shape":"AddTags"},
1385
- "ProvisioningArtifactParameters":{"shape":"ProvisioningArtifactProperties"},
1386
- "IdempotencyToken":{
1387
- "shape":"IdempotencyToken",
1388
- "idempotencyToken":true
1389
- }
1390
- }
1391
- },
1392
- "CreateProductOutput":{
1393
- "type":"structure",
1394
- "members":{
1395
- "ProductViewDetail":{"shape":"ProductViewDetail"},
1396
- "ProvisioningArtifactDetail":{"shape":"ProvisioningArtifactDetail"},
1397
- "Tags":{"shape":"Tags"}
1398
- }
1399
- },
1400
- "CreateProvisionedProductPlanInput":{
1401
- "type":"structure",
1402
- "required":[
1403
- "PlanName",
1404
- "PlanType",
1405
- "ProductId",
1406
- "ProvisionedProductName",
1407
- "ProvisioningArtifactId",
1408
- "IdempotencyToken"
1409
- ],
1410
- "members":{
1411
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1412
- "PlanName":{"shape":"ProvisionedProductPlanName"},
1413
- "PlanType":{"shape":"ProvisionedProductPlanType"},
1414
- "NotificationArns":{"shape":"NotificationArns"},
1415
- "PathId":{"shape":"Id"},
1416
- "ProductId":{"shape":"Id"},
1417
- "ProvisionedProductName":{"shape":"ProvisionedProductName"},
1418
- "ProvisioningArtifactId":{"shape":"Id"},
1419
- "ProvisioningParameters":{"shape":"UpdateProvisioningParameters"},
1420
- "IdempotencyToken":{
1421
- "shape":"IdempotencyToken",
1422
- "idempotencyToken":true
1423
- },
1424
- "Tags":{"shape":"Tags"}
1425
- }
1426
- },
1427
- "CreateProvisionedProductPlanOutput":{
1428
- "type":"structure",
1429
- "members":{
1430
- "PlanName":{"shape":"ProvisionedProductPlanName"},
1431
- "PlanId":{"shape":"Id"},
1432
- "ProvisionProductId":{"shape":"Id"},
1433
- "ProvisionedProductName":{"shape":"ProvisionedProductName"},
1434
- "ProvisioningArtifactId":{"shape":"Id"}
1435
- }
1436
- },
1437
- "CreateProvisioningArtifactInput":{
1438
- "type":"structure",
1439
- "required":[
1440
- "ProductId",
1441
- "Parameters",
1442
- "IdempotencyToken"
1443
- ],
1444
- "members":{
1445
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1446
- "ProductId":{"shape":"Id"},
1447
- "Parameters":{"shape":"ProvisioningArtifactProperties"},
1448
- "IdempotencyToken":{
1449
- "shape":"IdempotencyToken",
1450
- "idempotencyToken":true
1451
- }
1452
- }
1453
- },
1454
- "CreateProvisioningArtifactOutput":{
1455
- "type":"structure",
1456
- "members":{
1457
- "ProvisioningArtifactDetail":{"shape":"ProvisioningArtifactDetail"},
1458
- "Info":{"shape":"ProvisioningArtifactInfo"},
1459
- "Status":{"shape":"Status"}
1460
- }
1461
- },
1462
- "CreateServiceActionInput":{
1463
- "type":"structure",
1464
- "required":[
1465
- "Name",
1466
- "DefinitionType",
1467
- "Definition",
1468
- "IdempotencyToken"
1469
- ],
1470
- "members":{
1471
- "Name":{"shape":"ServiceActionName"},
1472
- "DefinitionType":{"shape":"ServiceActionDefinitionType"},
1473
- "Definition":{"shape":"ServiceActionDefinitionMap"},
1474
- "Description":{"shape":"ServiceActionDescription"},
1475
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1476
- "IdempotencyToken":{
1477
- "shape":"IdempotencyToken",
1478
- "idempotencyToken":true
1479
- }
1480
- }
1481
- },
1482
- "CreateServiceActionOutput":{
1483
- "type":"structure",
1484
- "members":{
1485
- "ServiceActionDetail":{"shape":"ServiceActionDetail"}
1486
- }
1487
- },
1488
- "CreateTagOptionInput":{
1489
- "type":"structure",
1490
- "required":[
1491
- "Key",
1492
- "Value"
1493
- ],
1494
- "members":{
1495
- "Key":{"shape":"TagOptionKey"},
1496
- "Value":{"shape":"TagOptionValue"}
1497
- }
1498
- },
1499
- "CreateTagOptionOutput":{
1500
- "type":"structure",
1501
- "members":{
1502
- "TagOptionDetail":{"shape":"TagOptionDetail"}
1503
- }
1504
- },
1505
- "CreatedTime":{"type":"timestamp"},
1506
- "CreationTime":{"type":"timestamp"},
1507
- "DefaultValue":{"type":"string"},
1508
- "DeleteConstraintInput":{
1509
- "type":"structure",
1510
- "required":["Id"],
1511
- "members":{
1512
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1513
- "Id":{"shape":"Id"}
1514
- }
1515
- },
1516
- "DeleteConstraintOutput":{
1517
- "type":"structure",
1518
- "members":{
1519
- }
1520
- },
1521
- "DeletePortfolioInput":{
1522
- "type":"structure",
1523
- "required":["Id"],
1524
- "members":{
1525
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1526
- "Id":{"shape":"Id"}
1527
- }
1528
- },
1529
- "DeletePortfolioOutput":{
1530
- "type":"structure",
1531
- "members":{
1532
- }
1533
- },
1534
- "DeletePortfolioShareInput":{
1535
- "type":"structure",
1536
- "required":["PortfolioId"],
1537
- "members":{
1538
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1539
- "PortfolioId":{"shape":"Id"},
1540
- "AccountId":{"shape":"AccountId"},
1541
- "OrganizationNode":{"shape":"OrganizationNode"}
1542
- }
1543
- },
1544
- "DeletePortfolioShareOutput":{
1545
- "type":"structure",
1546
- "members":{
1547
- "PortfolioShareToken":{"shape":"PortfolioShareToken"}
1548
- }
1549
- },
1550
- "DeleteProductInput":{
1551
- "type":"structure",
1552
- "required":["Id"],
1553
- "members":{
1554
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1555
- "Id":{"shape":"Id"}
1556
- }
1557
- },
1558
- "DeleteProductOutput":{
1559
- "type":"structure",
1560
- "members":{
1561
- }
1562
- },
1563
- "DeleteProvisionedProductPlanInput":{
1564
- "type":"structure",
1565
- "required":["PlanId"],
1566
- "members":{
1567
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1568
- "PlanId":{"shape":"Id"},
1569
- "IgnoreErrors":{"shape":"IgnoreErrors"}
1570
- }
1571
- },
1572
- "DeleteProvisionedProductPlanOutput":{
1573
- "type":"structure",
1574
- "members":{
1575
- }
1576
- },
1577
- "DeleteProvisioningArtifactInput":{
1578
- "type":"structure",
1579
- "required":[
1580
- "ProductId",
1581
- "ProvisioningArtifactId"
1582
- ],
1583
- "members":{
1584
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1585
- "ProductId":{"shape":"Id"},
1586
- "ProvisioningArtifactId":{"shape":"Id"}
1587
- }
1588
- },
1589
- "DeleteProvisioningArtifactOutput":{
1590
- "type":"structure",
1591
- "members":{
1592
- }
1593
- },
1594
- "DeleteServiceActionInput":{
1595
- "type":"structure",
1596
- "required":["Id"],
1597
- "members":{
1598
- "Id":{"shape":"Id"},
1599
- "AcceptLanguage":{"shape":"AcceptLanguage"}
1600
- }
1601
- },
1602
- "DeleteServiceActionOutput":{
1603
- "type":"structure",
1604
- "members":{
1605
- }
1606
- },
1607
- "DeleteTagOptionInput":{
1608
- "type":"structure",
1609
- "required":["Id"],
1610
- "members":{
1611
- "Id":{"shape":"TagOptionId"}
1612
- }
1613
- },
1614
- "DeleteTagOptionOutput":{
1615
- "type":"structure",
1616
- "members":{
1617
- }
1618
- },
1619
- "DescribeConstraintInput":{
1620
- "type":"structure",
1621
- "required":["Id"],
1622
- "members":{
1623
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1624
- "Id":{"shape":"Id"}
1625
- }
1626
- },
1627
- "DescribeConstraintOutput":{
1628
- "type":"structure",
1629
- "members":{
1630
- "ConstraintDetail":{"shape":"ConstraintDetail"},
1631
- "ConstraintParameters":{"shape":"ConstraintParameters"},
1632
- "Status":{"shape":"Status"}
1633
- }
1634
- },
1635
- "DescribeCopyProductStatusInput":{
1636
- "type":"structure",
1637
- "required":["CopyProductToken"],
1638
- "members":{
1639
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1640
- "CopyProductToken":{"shape":"Id"}
1641
- }
1642
- },
1643
- "DescribeCopyProductStatusOutput":{
1644
- "type":"structure",
1645
- "members":{
1646
- "CopyProductStatus":{"shape":"CopyProductStatus"},
1647
- "TargetProductId":{"shape":"Id"},
1648
- "StatusDetail":{"shape":"StatusDetail"}
1649
- }
1650
- },
1651
- "DescribePortfolioInput":{
1652
- "type":"structure",
1653
- "required":["Id"],
1654
- "members":{
1655
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1656
- "Id":{"shape":"Id"}
1657
- }
1658
- },
1659
- "DescribePortfolioOutput":{
1660
- "type":"structure",
1661
- "members":{
1662
- "PortfolioDetail":{"shape":"PortfolioDetail"},
1663
- "Tags":{"shape":"Tags"},
1664
- "TagOptions":{"shape":"TagOptionDetails"}
1665
- }
1666
- },
1667
- "DescribePortfolioShareStatusInput":{
1668
- "type":"structure",
1669
- "required":["PortfolioShareToken"],
1670
- "members":{
1671
- "PortfolioShareToken":{"shape":"PortfolioShareToken"}
1672
- }
1673
- },
1674
- "DescribePortfolioShareStatusOutput":{
1675
- "type":"structure",
1676
- "members":{
1677
- "PortfolioShareToken":{"shape":"PortfolioShareToken"},
1678
- "PortfolioId":{"shape":"Id"},
1679
- "OrganizationNodeValue":{"shape":"OrganizationNodeValue"},
1680
- "Status":{"shape":"ShareStatus"},
1681
- "ShareDetails":{"shape":"ShareDetails"}
1682
- }
1683
- },
1684
- "DescribeProductAsAdminInput":{
1685
- "type":"structure",
1686
- "required":["Id"],
1687
- "members":{
1688
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1689
- "Id":{"shape":"Id"}
1690
- }
1691
- },
1692
- "DescribeProductAsAdminOutput":{
1693
- "type":"structure",
1694
- "members":{
1695
- "ProductViewDetail":{"shape":"ProductViewDetail"},
1696
- "ProvisioningArtifactSummaries":{"shape":"ProvisioningArtifactSummaries"},
1697
- "Tags":{"shape":"Tags"},
1698
- "TagOptions":{"shape":"TagOptionDetails"}
1699
- }
1700
- },
1701
- "DescribeProductInput":{
1702
- "type":"structure",
1703
- "required":["Id"],
1704
- "members":{
1705
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1706
- "Id":{"shape":"Id"}
1707
- }
1708
- },
1709
- "DescribeProductOutput":{
1710
- "type":"structure",
1711
- "members":{
1712
- "ProductViewSummary":{"shape":"ProductViewSummary"},
1713
- "ProvisioningArtifacts":{"shape":"ProvisioningArtifacts"}
1714
- }
1715
- },
1716
- "DescribeProductViewInput":{
1717
- "type":"structure",
1718
- "required":["Id"],
1719
- "members":{
1720
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1721
- "Id":{"shape":"Id"}
1722
- }
1723
- },
1724
- "DescribeProductViewOutput":{
1725
- "type":"structure",
1726
- "members":{
1727
- "ProductViewSummary":{"shape":"ProductViewSummary"},
1728
- "ProvisioningArtifacts":{"shape":"ProvisioningArtifacts"}
1729
- }
1730
- },
1731
- "DescribeProvisionedProductInput":{
1732
- "type":"structure",
1733
- "required":["Id"],
1734
- "members":{
1735
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1736
- "Id":{"shape":"Id"}
1737
- }
1738
- },
1739
- "DescribeProvisionedProductOutput":{
1740
- "type":"structure",
1741
- "members":{
1742
- "ProvisionedProductDetail":{"shape":"ProvisionedProductDetail"},
1743
- "CloudWatchDashboards":{"shape":"CloudWatchDashboards"}
1744
- }
1745
- },
1746
- "DescribeProvisionedProductPlanInput":{
1747
- "type":"structure",
1748
- "required":["PlanId"],
1749
- "members":{
1750
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1751
- "PlanId":{"shape":"Id"},
1752
- "PageSize":{"shape":"PageSize"},
1753
- "PageToken":{"shape":"PageToken"}
1754
- }
1755
- },
1756
- "DescribeProvisionedProductPlanOutput":{
1757
- "type":"structure",
1758
- "members":{
1759
- "ProvisionedProductPlanDetails":{"shape":"ProvisionedProductPlanDetails"},
1760
- "ResourceChanges":{"shape":"ResourceChanges"},
1761
- "NextPageToken":{"shape":"PageToken"}
1762
- }
1763
- },
1764
- "DescribeProvisioningArtifactInput":{
1765
- "type":"structure",
1766
- "required":[
1767
- "ProvisioningArtifactId",
1768
- "ProductId"
1769
- ],
1770
- "members":{
1771
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1772
- "ProvisioningArtifactId":{"shape":"Id"},
1773
- "ProductId":{"shape":"Id"},
1774
- "Verbose":{"shape":"Verbose"}
1775
- }
1776
- },
1777
- "DescribeProvisioningArtifactOutput":{
1778
- "type":"structure",
1779
- "members":{
1780
- "ProvisioningArtifactDetail":{"shape":"ProvisioningArtifactDetail"},
1781
- "Info":{"shape":"ProvisioningArtifactInfo"},
1782
- "Status":{"shape":"Status"}
1783
- }
1784
- },
1785
- "DescribeProvisioningParametersInput":{
1786
- "type":"structure",
1787
- "required":[
1788
- "ProductId",
1789
- "ProvisioningArtifactId"
1790
- ],
1791
- "members":{
1792
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1793
- "ProductId":{"shape":"Id"},
1794
- "ProvisioningArtifactId":{"shape":"Id"},
1795
- "PathId":{"shape":"Id"}
1796
- }
1797
- },
1798
- "DescribeProvisioningParametersOutput":{
1799
- "type":"structure",
1800
- "members":{
1801
- "ProvisioningArtifactParameters":{"shape":"ProvisioningArtifactParameters"},
1802
- "ConstraintSummaries":{"shape":"ConstraintSummaries"},
1803
- "UsageInstructions":{"shape":"UsageInstructions"},
1804
- "TagOptions":{"shape":"TagOptionSummaries"},
1805
- "ProvisioningArtifactPreferences":{"shape":"ProvisioningArtifactPreferences"}
1806
- }
1807
- },
1808
- "DescribeRecordInput":{
1809
- "type":"structure",
1810
- "required":["Id"],
1811
- "members":{
1812
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1813
- "Id":{"shape":"Id"},
1814
- "PageToken":{"shape":"PageToken"},
1815
- "PageSize":{"shape":"PageSize"}
1816
- }
1817
- },
1818
- "DescribeRecordOutput":{
1819
- "type":"structure",
1820
- "members":{
1821
- "RecordDetail":{"shape":"RecordDetail"},
1822
- "RecordOutputs":{"shape":"RecordOutputs"},
1823
- "NextPageToken":{"shape":"PageToken"}
1824
- }
1825
- },
1826
- "DescribeServiceActionInput":{
1827
- "type":"structure",
1828
- "required":["Id"],
1829
- "members":{
1830
- "Id":{"shape":"Id"},
1831
- "AcceptLanguage":{"shape":"AcceptLanguage"}
1832
- }
1833
- },
1834
- "DescribeServiceActionOutput":{
1835
- "type":"structure",
1836
- "members":{
1837
- "ServiceActionDetail":{"shape":"ServiceActionDetail"}
1838
- }
1839
- },
1840
- "DescribeTagOptionInput":{
1841
- "type":"structure",
1842
- "required":["Id"],
1843
- "members":{
1844
- "Id":{"shape":"TagOptionId"}
1845
- }
1846
- },
1847
- "DescribeTagOptionOutput":{
1848
- "type":"structure",
1849
- "members":{
1850
- "TagOptionDetail":{"shape":"TagOptionDetail"}
1851
- }
1852
- },
1853
- "Description":{"type":"string"},
1854
- "DisableAWSOrganizationsAccessInput":{
1855
- "type":"structure",
1856
- "members":{
1857
- }
1858
- },
1859
- "DisableAWSOrganizationsAccessOutput":{
1860
- "type":"structure",
1861
- "members":{
1862
- }
1863
- },
1864
- "DisassociatePrincipalFromPortfolioInput":{
1865
- "type":"structure",
1866
- "required":[
1867
- "PortfolioId",
1868
- "PrincipalARN"
1869
- ],
1870
- "members":{
1871
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1872
- "PortfolioId":{"shape":"Id"},
1873
- "PrincipalARN":{"shape":"PrincipalARN"}
1874
- }
1875
- },
1876
- "DisassociatePrincipalFromPortfolioOutput":{
1877
- "type":"structure",
1878
- "members":{
1879
- }
1880
- },
1881
- "DisassociateProductFromPortfolioInput":{
1882
- "type":"structure",
1883
- "required":[
1884
- "ProductId",
1885
- "PortfolioId"
1886
- ],
1887
- "members":{
1888
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1889
- "ProductId":{"shape":"Id"},
1890
- "PortfolioId":{"shape":"Id"}
1891
- }
1892
- },
1893
- "DisassociateProductFromPortfolioOutput":{
1894
- "type":"structure",
1895
- "members":{
1896
- }
1897
- },
1898
- "DisassociateServiceActionFromProvisioningArtifactInput":{
1899
- "type":"structure",
1900
- "required":[
1901
- "ProductId",
1902
- "ProvisioningArtifactId",
1903
- "ServiceActionId"
1904
- ],
1905
- "members":{
1906
- "ProductId":{"shape":"Id"},
1907
- "ProvisioningArtifactId":{"shape":"Id"},
1908
- "ServiceActionId":{"shape":"Id"},
1909
- "AcceptLanguage":{"shape":"AcceptLanguage"}
1910
- }
1911
- },
1912
- "DisassociateServiceActionFromProvisioningArtifactOutput":{
1913
- "type":"structure",
1914
- "members":{
1915
- }
1916
- },
1917
- "DisassociateTagOptionFromResourceInput":{
1918
- "type":"structure",
1919
- "required":[
1920
- "ResourceId",
1921
- "TagOptionId"
1922
- ],
1923
- "members":{
1924
- "ResourceId":{"shape":"ResourceId"},
1925
- "TagOptionId":{"shape":"TagOptionId"}
1926
- }
1927
- },
1928
- "DisassociateTagOptionFromResourceOutput":{
1929
- "type":"structure",
1930
- "members":{
1931
- }
1932
- },
1933
- "DuplicateResourceException":{
1934
- "type":"structure",
1935
- "members":{
1936
- },
1937
- "exception":true
1938
- },
1939
- "EnableAWSOrganizationsAccessInput":{
1940
- "type":"structure",
1941
- "members":{
1942
- }
1943
- },
1944
- "EnableAWSOrganizationsAccessOutput":{
1945
- "type":"structure",
1946
- "members":{
1947
- }
1948
- },
1949
- "Error":{"type":"string"},
1950
- "ErrorCode":{"type":"string"},
1951
- "ErrorDescription":{"type":"string"},
1952
- "EvaluationType":{
1953
- "type":"string",
1954
- "enum":[
1955
- "STATIC",
1956
- "DYNAMIC"
1957
- ]
1958
- },
1959
- "ExecuteProvisionedProductPlanInput":{
1960
- "type":"structure",
1961
- "required":[
1962
- "PlanId",
1963
- "IdempotencyToken"
1964
- ],
1965
- "members":{
1966
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1967
- "PlanId":{"shape":"Id"},
1968
- "IdempotencyToken":{
1969
- "shape":"IdempotencyToken",
1970
- "idempotencyToken":true
1971
- }
1972
- }
1973
- },
1974
- "ExecuteProvisionedProductPlanOutput":{
1975
- "type":"structure",
1976
- "members":{
1977
- "RecordDetail":{"shape":"RecordDetail"}
1978
- }
1979
- },
1980
- "ExecuteProvisionedProductServiceActionInput":{
1981
- "type":"structure",
1982
- "required":[
1983
- "ProvisionedProductId",
1984
- "ServiceActionId",
1985
- "ExecuteToken"
1986
- ],
1987
- "members":{
1988
- "ProvisionedProductId":{"shape":"Id"},
1989
- "ServiceActionId":{"shape":"Id"},
1990
- "ExecuteToken":{
1991
- "shape":"IdempotencyToken",
1992
- "idempotencyToken":true
1993
- },
1994
- "AcceptLanguage":{"shape":"AcceptLanguage"}
1995
- }
1996
- },
1997
- "ExecuteProvisionedProductServiceActionOutput":{
1998
- "type":"structure",
1999
- "members":{
2000
- "RecordDetail":{"shape":"RecordDetail"}
2001
- }
2002
- },
2003
- "FailedServiceActionAssociation":{
2004
- "type":"structure",
2005
- "members":{
2006
- "ServiceActionId":{"shape":"Id"},
2007
- "ProductId":{"shape":"Id"},
2008
- "ProvisioningArtifactId":{"shape":"Id"},
2009
- "ErrorCode":{"shape":"ServiceActionAssociationErrorCode"},
2010
- "ErrorMessage":{"shape":"ServiceActionAssociationErrorMessage"}
2011
- }
2012
- },
2013
- "FailedServiceActionAssociations":{
2014
- "type":"list",
2015
- "member":{"shape":"FailedServiceActionAssociation"},
2016
- "max":50
2017
- },
2018
- "GetAWSOrganizationsAccessStatusInput":{
2019
- "type":"structure",
2020
- "members":{
2021
- }
2022
- },
2023
- "GetAWSOrganizationsAccessStatusOutput":{
2024
- "type":"structure",
2025
- "members":{
2026
- "AccessStatus":{"shape":"AccessStatus"}
2027
- }
2028
- },
2029
- "HasDefaultPath":{"type":"boolean"},
2030
- "Id":{
2031
- "type":"string",
2032
- "max":100,
2033
- "min":1,
2034
- "pattern":"^[a-zA-Z0-9_\\-]*"
2035
- },
2036
- "IdempotencyToken":{
2037
- "type":"string",
2038
- "max":128,
2039
- "min":1,
2040
- "pattern":"[a-zA-Z0-9][a-zA-Z0-9_-]*"
2041
- },
2042
- "IgnoreErrors":{"type":"boolean"},
2043
- "InstructionType":{"type":"string"},
2044
- "InstructionValue":{"type":"string"},
2045
- "InvalidParametersException":{
2046
- "type":"structure",
2047
- "members":{
2048
- },
2049
- "exception":true
2050
- },
2051
- "InvalidStateException":{
2052
- "type":"structure",
2053
- "members":{
2054
- },
2055
- "exception":true
2056
- },
2057
- "LastRequestId":{"type":"string"},
2058
- "LaunchPathSummaries":{
2059
- "type":"list",
2060
- "member":{"shape":"LaunchPathSummary"}
2061
- },
2062
- "LaunchPathSummary":{
2063
- "type":"structure",
2064
- "members":{
2065
- "Id":{"shape":"Id"},
2066
- "ConstraintSummaries":{"shape":"ConstraintSummaries"},
2067
- "Tags":{"shape":"Tags"},
2068
- "Name":{"shape":"PortfolioName"}
2069
- }
2070
- },
2071
- "LimitExceededException":{
2072
- "type":"structure",
2073
- "members":{
2074
- },
2075
- "exception":true
2076
- },
2077
- "ListAcceptedPortfolioSharesInput":{
2078
- "type":"structure",
2079
- "members":{
2080
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2081
- "PageToken":{"shape":"PageToken"},
2082
- "PageSize":{"shape":"PageSize"},
2083
- "PortfolioShareType":{"shape":"PortfolioShareType"}
2084
- }
2085
- },
2086
- "ListAcceptedPortfolioSharesOutput":{
2087
- "type":"structure",
2088
- "members":{
2089
- "PortfolioDetails":{"shape":"PortfolioDetails"},
2090
- "NextPageToken":{"shape":"PageToken"}
2091
- }
2092
- },
2093
- "ListConstraintsForPortfolioInput":{
2094
- "type":"structure",
2095
- "required":["PortfolioId"],
2096
- "members":{
2097
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2098
- "PortfolioId":{"shape":"Id"},
2099
- "ProductId":{"shape":"Id"},
2100
- "PageSize":{"shape":"PageSize"},
2101
- "PageToken":{"shape":"PageToken"}
2102
- }
2103
- },
2104
- "ListConstraintsForPortfolioOutput":{
2105
- "type":"structure",
2106
- "members":{
2107
- "ConstraintDetails":{"shape":"ConstraintDetails"},
2108
- "NextPageToken":{"shape":"PageToken"}
2109
- }
2110
- },
2111
- "ListLaunchPathsInput":{
2112
- "type":"structure",
2113
- "required":["ProductId"],
2114
- "members":{
2115
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2116
- "ProductId":{"shape":"Id"},
2117
- "PageSize":{"shape":"PageSize"},
2118
- "PageToken":{"shape":"PageToken"}
2119
- }
2120
- },
2121
- "ListLaunchPathsOutput":{
2122
- "type":"structure",
2123
- "members":{
2124
- "LaunchPathSummaries":{"shape":"LaunchPathSummaries"},
2125
- "NextPageToken":{"shape":"PageToken"}
2126
- }
2127
- },
2128
- "ListOrganizationPortfolioAccessInput":{
2129
- "type":"structure",
2130
- "required":[
2131
- "PortfolioId",
2132
- "OrganizationNodeType"
2133
- ],
2134
- "members":{
2135
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2136
- "PortfolioId":{"shape":"Id"},
2137
- "OrganizationNodeType":{"shape":"OrganizationNodeType"},
2138
- "PageToken":{"shape":"PageToken"},
2139
- "PageSize":{"shape":"PageSize"}
2140
- }
2141
- },
2142
- "ListOrganizationPortfolioAccessOutput":{
2143
- "type":"structure",
2144
- "members":{
2145
- "OrganizationNodes":{"shape":"OrganizationNodes"},
2146
- "NextPageToken":{"shape":"PageToken"}
2147
- }
2148
- },
2149
- "ListPortfolioAccessInput":{
2150
- "type":"structure",
2151
- "required":["PortfolioId"],
2152
- "members":{
2153
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2154
- "PortfolioId":{"shape":"Id"}
2155
- }
2156
- },
2157
- "ListPortfolioAccessOutput":{
2158
- "type":"structure",
2159
- "members":{
2160
- "AccountIds":{"shape":"AccountIds"},
2161
- "NextPageToken":{"shape":"PageToken"}
2162
- }
2163
- },
2164
- "ListPortfoliosForProductInput":{
2165
- "type":"structure",
2166
- "required":["ProductId"],
2167
- "members":{
2168
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2169
- "ProductId":{"shape":"Id"},
2170
- "PageToken":{"shape":"PageToken"},
2171
- "PageSize":{"shape":"PageSize"}
2172
- }
2173
- },
2174
- "ListPortfoliosForProductOutput":{
2175
- "type":"structure",
2176
- "members":{
2177
- "PortfolioDetails":{"shape":"PortfolioDetails"},
2178
- "NextPageToken":{"shape":"PageToken"}
2179
- }
2180
- },
2181
- "ListPortfoliosInput":{
2182
- "type":"structure",
2183
- "members":{
2184
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2185
- "PageToken":{"shape":"PageToken"},
2186
- "PageSize":{"shape":"PageSize"}
2187
- }
2188
- },
2189
- "ListPortfoliosOutput":{
2190
- "type":"structure",
2191
- "members":{
2192
- "PortfolioDetails":{"shape":"PortfolioDetails"},
2193
- "NextPageToken":{"shape":"PageToken"}
2194
- }
2195
- },
2196
- "ListPrincipalsForPortfolioInput":{
2197
- "type":"structure",
2198
- "required":["PortfolioId"],
2199
- "members":{
2200
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2201
- "PortfolioId":{"shape":"Id"},
2202
- "PageSize":{"shape":"PageSize"},
2203
- "PageToken":{"shape":"PageToken"}
2204
- }
2205
- },
2206
- "ListPrincipalsForPortfolioOutput":{
2207
- "type":"structure",
2208
- "members":{
2209
- "Principals":{"shape":"Principals"},
2210
- "NextPageToken":{"shape":"PageToken"}
2211
- }
2212
- },
2213
- "ListProvisionedProductPlansInput":{
2214
- "type":"structure",
2215
- "members":{
2216
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2217
- "ProvisionProductId":{"shape":"Id"},
2218
- "PageSize":{"shape":"PageSize"},
2219
- "PageToken":{"shape":"PageToken"},
2220
- "AccessLevelFilter":{"shape":"AccessLevelFilter"}
2221
- }
2222
- },
2223
- "ListProvisionedProductPlansOutput":{
2224
- "type":"structure",
2225
- "members":{
2226
- "ProvisionedProductPlans":{"shape":"ProvisionedProductPlans"},
2227
- "NextPageToken":{"shape":"PageToken"}
2228
- }
2229
- },
2230
- "ListProvisioningArtifactsForServiceActionInput":{
2231
- "type":"structure",
2232
- "required":["ServiceActionId"],
2233
- "members":{
2234
- "ServiceActionId":{"shape":"Id"},
2235
- "PageSize":{"shape":"PageSize"},
2236
- "PageToken":{"shape":"PageToken"},
2237
- "AcceptLanguage":{"shape":"AcceptLanguage"}
2238
- }
2239
- },
2240
- "ListProvisioningArtifactsForServiceActionOutput":{
2241
- "type":"structure",
2242
- "members":{
2243
- "ProvisioningArtifactViews":{"shape":"ProvisioningArtifactViews"},
2244
- "NextPageToken":{"shape":"PageToken"}
2245
- }
2246
- },
2247
- "ListProvisioningArtifactsInput":{
2248
- "type":"structure",
2249
- "required":["ProductId"],
2250
- "members":{
2251
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2252
- "ProductId":{"shape":"Id"}
2253
- }
2254
- },
2255
- "ListProvisioningArtifactsOutput":{
2256
- "type":"structure",
2257
- "members":{
2258
- "ProvisioningArtifactDetails":{"shape":"ProvisioningArtifactDetails"},
2259
- "NextPageToken":{"shape":"PageToken"}
2260
- }
2261
- },
2262
- "ListRecordHistoryInput":{
2263
- "type":"structure",
2264
- "members":{
2265
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2266
- "AccessLevelFilter":{"shape":"AccessLevelFilter"},
2267
- "SearchFilter":{"shape":"ListRecordHistorySearchFilter"},
2268
- "PageSize":{"shape":"PageSize"},
2269
- "PageToken":{"shape":"PageToken"}
2270
- }
2271
- },
2272
- "ListRecordHistoryOutput":{
2273
- "type":"structure",
2274
- "members":{
2275
- "RecordDetails":{"shape":"RecordDetails"},
2276
- "NextPageToken":{"shape":"PageToken"}
2277
- }
2278
- },
2279
- "ListRecordHistorySearchFilter":{
2280
- "type":"structure",
2281
- "members":{
2282
- "Key":{"shape":"SearchFilterKey"},
2283
- "Value":{"shape":"SearchFilterValue"}
2284
- }
2285
- },
2286
- "ListResourcesForTagOptionInput":{
2287
- "type":"structure",
2288
- "required":["TagOptionId"],
2289
- "members":{
2290
- "TagOptionId":{"shape":"TagOptionId"},
2291
- "ResourceType":{"shape":"ResourceType"},
2292
- "PageSize":{"shape":"PageSize"},
2293
- "PageToken":{"shape":"PageToken"}
2294
- }
2295
- },
2296
- "ListResourcesForTagOptionOutput":{
2297
- "type":"structure",
2298
- "members":{
2299
- "ResourceDetails":{"shape":"ResourceDetails"},
2300
- "PageToken":{"shape":"PageToken"}
2301
- }
2302
- },
2303
- "ListServiceActionsForProvisioningArtifactInput":{
2304
- "type":"structure",
2305
- "required":[
2306
- "ProductId",
2307
- "ProvisioningArtifactId"
2308
- ],
2309
- "members":{
2310
- "ProductId":{"shape":"Id"},
2311
- "ProvisioningArtifactId":{"shape":"Id"},
2312
- "PageSize":{"shape":"PageSize"},
2313
- "PageToken":{"shape":"PageToken"},
2314
- "AcceptLanguage":{"shape":"AcceptLanguage"}
2315
- }
2316
- },
2317
- "ListServiceActionsForProvisioningArtifactOutput":{
2318
- "type":"structure",
2319
- "members":{
2320
- "ServiceActionSummaries":{"shape":"ServiceActionSummaries"},
2321
- "NextPageToken":{"shape":"PageToken"}
2322
- }
2323
- },
2324
- "ListServiceActionsInput":{
2325
- "type":"structure",
2326
- "members":{
2327
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2328
- "PageSize":{"shape":"PageSize"},
2329
- "PageToken":{"shape":"PageToken"}
2330
- }
2331
- },
2332
- "ListServiceActionsOutput":{
2333
- "type":"structure",
2334
- "members":{
2335
- "ServiceActionSummaries":{"shape":"ServiceActionSummaries"},
2336
- "NextPageToken":{"shape":"PageToken"}
2337
- }
2338
- },
2339
- "ListTagOptionsFilters":{
2340
- "type":"structure",
2341
- "members":{
2342
- "Key":{"shape":"TagOptionKey"},
2343
- "Value":{"shape":"TagOptionValue"},
2344
- "Active":{"shape":"TagOptionActive"}
2345
- }
2346
- },
2347
- "ListTagOptionsInput":{
2348
- "type":"structure",
2349
- "members":{
2350
- "Filters":{"shape":"ListTagOptionsFilters"},
2351
- "PageSize":{"shape":"PageSize"},
2352
- "PageToken":{"shape":"PageToken"}
2353
- }
2354
- },
2355
- "ListTagOptionsOutput":{
2356
- "type":"structure",
2357
- "members":{
2358
- "TagOptionDetails":{"shape":"TagOptionDetails"},
2359
- "PageToken":{"shape":"PageToken"}
2360
- }
2361
- },
2362
- "LogicalResourceId":{"type":"string"},
2363
- "Message":{"type":"string"},
2364
- "Namespaces":{
2365
- "type":"list",
2366
- "member":{"shape":"AccountId"}
2367
- },
2368
- "NoEcho":{"type":"boolean"},
2369
- "NotificationArn":{
2370
- "type":"string",
2371
- "max":1224,
2372
- "min":1,
2373
- "pattern":"arn:[a-z0-9-\\.]{1,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[^/].{0,1023}"
2374
- },
2375
- "NotificationArns":{
2376
- "type":"list",
2377
- "member":{"shape":"NotificationArn"},
2378
- "max":5
2379
- },
2380
- "OperationNotSupportedException":{
2381
- "type":"structure",
2382
- "members":{
2383
- },
2384
- "exception":true
2385
- },
2386
- "OrganizationNode":{
2387
- "type":"structure",
2388
- "members":{
2389
- "Type":{"shape":"OrganizationNodeType"},
2390
- "Value":{"shape":"OrganizationNodeValue"}
2391
- }
2392
- },
2393
- "OrganizationNodeType":{
2394
- "type":"string",
2395
- "enum":[
2396
- "ORGANIZATION",
2397
- "ORGANIZATIONAL_UNIT",
2398
- "ACCOUNT"
2399
- ]
2400
- },
2401
- "OrganizationNodeValue":{
2402
- "type":"string",
2403
- "pattern":"(^[0-9]{12}$)|(^arn:aws:organizations::\\d{12}:organization\\/o-[a-z0-9]{10,32})|(^o-[a-z0-9]{10,32}$)|(^arn:aws:organizations::\\d{12}:ou\\/o-[a-z0-9]{10,32}\\/ou-[0-9a-z]{4,32}-[0-9a-z]{8,32}$)|(^ou-[0-9a-z]{4,32}-[a-z0-9]{8,32}$)"
2404
- },
2405
- "OrganizationNodes":{
2406
- "type":"list",
2407
- "member":{"shape":"OrganizationNode"}
2408
- },
2409
- "OutputKey":{"type":"string"},
2410
- "OutputValue":{"type":"string"},
2411
- "PageSize":{
2412
- "type":"integer",
2413
- "max":20,
2414
- "min":0
2415
- },
2416
- "PageToken":{
2417
- "type":"string",
2418
- "max":2024,
2419
- "pattern":"[\\u0009\\u000a\\u000d\\u0020-\\uD7FF\\uE000-\\uFFFD]*"
2420
- },
2421
- "ParameterConstraints":{
2422
- "type":"structure",
2423
- "members":{
2424
- "AllowedValues":{"shape":"AllowedValues"}
2425
- }
2426
- },
2427
- "ParameterKey":{
2428
- "type":"string",
2429
- "max":1000,
2430
- "min":1
2431
- },
2432
- "ParameterType":{"type":"string"},
2433
- "ParameterValue":{
2434
- "type":"string",
2435
- "max":4096
2436
- },
2437
- "PhysicalId":{"type":"string"},
2438
- "PhysicalResourceId":{"type":"string"},
2439
- "PlanResourceType":{
2440
- "type":"string",
2441
- "max":256,
2442
- "min":1
2443
- },
2444
- "PortfolioDescription":{
2445
- "type":"string",
2446
- "max":2000
2447
- },
2448
- "PortfolioDetail":{
2449
- "type":"structure",
2450
- "members":{
2451
- "Id":{"shape":"Id"},
2452
- "ARN":{"shape":"ResourceARN"},
2453
- "DisplayName":{"shape":"PortfolioDisplayName"},
2454
- "Description":{"shape":"PortfolioDescription"},
2455
- "CreatedTime":{"shape":"CreationTime"},
2456
- "ProviderName":{"shape":"ProviderName"}
2457
- }
2458
- },
2459
- "PortfolioDetails":{
2460
- "type":"list",
2461
- "member":{"shape":"PortfolioDetail"}
2462
- },
2463
- "PortfolioDisplayName":{
2464
- "type":"string",
2465
- "max":100,
2466
- "min":1
2467
- },
2468
- "PortfolioName":{"type":"string"},
2469
- "PortfolioShareToken":{"type":"string"},
2470
- "PortfolioShareType":{
2471
- "type":"string",
2472
- "enum":[
2473
- "IMPORTED",
2474
- "AWS_SERVICECATALOG",
2475
- "AWS_ORGANIZATIONS"
2476
- ]
2477
- },
2478
- "Principal":{
2479
- "type":"structure",
2480
- "members":{
2481
- "PrincipalARN":{"shape":"PrincipalARN"},
2482
- "PrincipalType":{"shape":"PrincipalType"}
2483
- }
2484
- },
2485
- "PrincipalARN":{
2486
- "type":"string",
2487
- "max":1000,
2488
- "min":1
2489
- },
2490
- "PrincipalType":{
2491
- "type":"string",
2492
- "enum":["IAM"]
2493
- },
2494
- "Principals":{
2495
- "type":"list",
2496
- "member":{"shape":"Principal"}
2497
- },
2498
- "ProductArn":{
2499
- "type":"string",
2500
- "max":1224,
2501
- "min":1,
2502
- "pattern":"arn:[a-z0-9-\\.]{1,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[^/].{0,1023}"
2503
- },
2504
- "ProductSource":{
2505
- "type":"string",
2506
- "enum":["ACCOUNT"]
2507
- },
2508
- "ProductType":{
2509
- "type":"string",
2510
- "enum":[
2511
- "CLOUD_FORMATION_TEMPLATE",
2512
- "MARKETPLACE"
2513
- ],
2514
- "max":8191
2515
- },
2516
- "ProductViewAggregationType":{"type":"string"},
2517
- "ProductViewAggregationValue":{
2518
- "type":"structure",
2519
- "members":{
2520
- "Value":{"shape":"AttributeValue"},
2521
- "ApproximateCount":{"shape":"ApproximateCount"}
2522
- }
2523
- },
2524
- "ProductViewAggregationValues":{
2525
- "type":"list",
2526
- "member":{"shape":"ProductViewAggregationValue"}
2527
- },
2528
- "ProductViewAggregations":{
2529
- "type":"map",
2530
- "key":{"shape":"ProductViewAggregationType"},
2531
- "value":{"shape":"ProductViewAggregationValues"}
2532
- },
2533
- "ProductViewDetail":{
2534
- "type":"structure",
2535
- "members":{
2536
- "ProductViewSummary":{"shape":"ProductViewSummary"},
2537
- "Status":{"shape":"Status"},
2538
- "ProductARN":{"shape":"ResourceARN"},
2539
- "CreatedTime":{"shape":"CreatedTime"}
2540
- }
2541
- },
2542
- "ProductViewDetails":{
2543
- "type":"list",
2544
- "member":{"shape":"ProductViewDetail"}
2545
- },
2546
- "ProductViewDistributor":{"type":"string"},
2547
- "ProductViewFilterBy":{
2548
- "type":"string",
2549
- "enum":[
2550
- "FullTextSearch",
2551
- "Owner",
2552
- "ProductType",
2553
- "SourceProductId"
2554
- ]
2555
- },
2556
- "ProductViewFilterValue":{"type":"string"},
2557
- "ProductViewFilterValues":{
2558
- "type":"list",
2559
- "member":{"shape":"ProductViewFilterValue"}
2560
- },
2561
- "ProductViewFilters":{
2562
- "type":"map",
2563
- "key":{"shape":"ProductViewFilterBy"},
2564
- "value":{"shape":"ProductViewFilterValues"}
2565
- },
2566
- "ProductViewName":{
2567
- "type":"string",
2568
- "max":8191
2569
- },
2570
- "ProductViewOwner":{
2571
- "type":"string",
2572
- "max":8191
2573
- },
2574
- "ProductViewShortDescription":{
2575
- "type":"string",
2576
- "max":8191
2577
- },
2578
- "ProductViewSortBy":{
2579
- "type":"string",
2580
- "enum":[
2581
- "Title",
2582
- "VersionCount",
2583
- "CreationDate"
2584
- ]
2585
- },
2586
- "ProductViewSummaries":{
2587
- "type":"list",
2588
- "member":{"shape":"ProductViewSummary"}
2589
- },
2590
- "ProductViewSummary":{
2591
- "type":"structure",
2592
- "members":{
2593
- "Id":{"shape":"Id"},
2594
- "ProductId":{"shape":"Id"},
2595
- "Name":{"shape":"ProductViewName"},
2596
- "Owner":{"shape":"ProductViewOwner"},
2597
- "ShortDescription":{"shape":"ProductViewShortDescription"},
2598
- "Type":{"shape":"ProductType"},
2599
- "Distributor":{"shape":"ProductViewDistributor"},
2600
- "HasDefaultPath":{"shape":"HasDefaultPath"},
2601
- "SupportEmail":{"shape":"SupportEmail"},
2602
- "SupportDescription":{"shape":"SupportDescription"},
2603
- "SupportUrl":{"shape":"SupportUrl"}
2604
- }
2605
- },
2606
- "PropertyName":{"type":"string"},
2607
- "ProviderName":{
2608
- "type":"string",
2609
- "max":50,
2610
- "min":1
2611
- },
2612
- "ProvisionProductInput":{
2613
- "type":"structure",
2614
- "required":[
2615
- "ProductId",
2616
- "ProvisioningArtifactId",
2617
- "ProvisionedProductName",
2618
- "ProvisionToken"
2619
- ],
2620
- "members":{
2621
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2622
- "ProductId":{"shape":"Id"},
2623
- "ProvisioningArtifactId":{"shape":"Id"},
2624
- "PathId":{"shape":"Id"},
2625
- "ProvisionedProductName":{"shape":"ProvisionedProductName"},
2626
- "ProvisioningParameters":{"shape":"ProvisioningParameters"},
2627
- "ProvisioningPreferences":{"shape":"ProvisioningPreferences"},
2628
- "Tags":{"shape":"Tags"},
2629
- "NotificationArns":{"shape":"NotificationArns"},
2630
- "ProvisionToken":{
2631
- "shape":"IdempotencyToken",
2632
- "idempotencyToken":true
2633
- }
2634
- }
2635
- },
2636
- "ProvisionProductOutput":{
2637
- "type":"structure",
2638
- "members":{
2639
- "RecordDetail":{"shape":"RecordDetail"}
2640
- }
2641
- },
2642
- "ProvisionedProductAttribute":{
2643
- "type":"structure",
2644
- "members":{
2645
- "Name":{"shape":"ProvisionedProductNameOrArn"},
2646
- "Arn":{"shape":"ProvisionedProductNameOrArn"},
2647
- "Type":{"shape":"ProvisionedProductType"},
2648
- "Id":{"shape":"Id"},
2649
- "Status":{"shape":"ProvisionedProductStatus"},
2650
- "StatusMessage":{"shape":"ProvisionedProductStatusMessage"},
2651
- "CreatedTime":{"shape":"CreatedTime"},
2652
- "IdempotencyToken":{"shape":"IdempotencyToken"},
2653
- "LastRecordId":{"shape":"Id"},
2654
- "Tags":{"shape":"Tags"},
2655
- "PhysicalId":{"shape":"PhysicalId"},
2656
- "ProductId":{"shape":"Id"},
2657
- "ProvisioningArtifactId":{"shape":"Id"},
2658
- "UserArn":{"shape":"UserArn"},
2659
- "UserArnSession":{"shape":"UserArnSession"}
2660
- }
2661
- },
2662
- "ProvisionedProductAttributes":{
2663
- "type":"list",
2664
- "member":{"shape":"ProvisionedProductAttribute"}
2665
- },
2666
- "ProvisionedProductDetail":{
2667
- "type":"structure",
2668
- "members":{
2669
- "Name":{"shape":"ProvisionedProductNameOrArn"},
2670
- "Arn":{"shape":"ProvisionedProductNameOrArn"},
2671
- "Type":{"shape":"ProvisionedProductType"},
2672
- "Id":{"shape":"ProvisionedProductId"},
2673
- "Status":{"shape":"ProvisionedProductStatus"},
2674
- "StatusMessage":{"shape":"ProvisionedProductStatusMessage"},
2675
- "CreatedTime":{"shape":"CreatedTime"},
2676
- "IdempotencyToken":{"shape":"IdempotencyToken"},
2677
- "LastRecordId":{"shape":"LastRequestId"},
2678
- "ProductId":{"shape":"Id"},
2679
- "ProvisioningArtifactId":{"shape":"Id"}
2680
- }
2681
- },
2682
- "ProvisionedProductDetails":{
2683
- "type":"list",
2684
- "member":{"shape":"ProvisionedProductDetail"}
2685
- },
2686
- "ProvisionedProductFilters":{
2687
- "type":"map",
2688
- "key":{"shape":"ProvisionedProductViewFilterBy"},
2689
- "value":{"shape":"ProvisionedProductViewFilterValues"}
2690
- },
2691
- "ProvisionedProductId":{"type":"string"},
2692
- "ProvisionedProductName":{
2693
- "type":"string",
2694
- "max":128,
2695
- "min":1,
2696
- "pattern":"[a-zA-Z0-9][a-zA-Z0-9._-]*"
2697
- },
2698
- "ProvisionedProductNameOrArn":{
2699
- "type":"string",
2700
- "max":1224,
2701
- "min":1,
2702
- "pattern":"[a-zA-Z0-9][a-zA-Z0-9._-]{0,127}|arn:[a-z0-9-\\.]{1,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[^/].{0,1023}"
2703
- },
2704
- "ProvisionedProductPlanDetails":{
2705
- "type":"structure",
2706
- "members":{
2707
- "CreatedTime":{"shape":"CreatedTime"},
2708
- "PathId":{"shape":"Id"},
2709
- "ProductId":{"shape":"Id"},
2710
- "PlanName":{"shape":"ProvisionedProductPlanName"},
2711
- "PlanId":{"shape":"Id"},
2712
- "ProvisionProductId":{"shape":"Id"},
2713
- "ProvisionProductName":{"shape":"ProvisionedProductName"},
2714
- "PlanType":{"shape":"ProvisionedProductPlanType"},
2715
- "ProvisioningArtifactId":{"shape":"Id"},
2716
- "Status":{"shape":"ProvisionedProductPlanStatus"},
2717
- "UpdatedTime":{"shape":"UpdatedTime"},
2718
- "NotificationArns":{"shape":"NotificationArns"},
2719
- "ProvisioningParameters":{"shape":"UpdateProvisioningParameters"},
2720
- "Tags":{"shape":"Tags"},
2721
- "StatusMessage":{"shape":"StatusMessage"}
2722
- }
2723
- },
2724
- "ProvisionedProductPlanName":{"type":"string"},
2725
- "ProvisionedProductPlanStatus":{
2726
- "type":"string",
2727
- "enum":[
2728
- "CREATE_IN_PROGRESS",
2729
- "CREATE_SUCCESS",
2730
- "CREATE_FAILED",
2731
- "EXECUTE_IN_PROGRESS",
2732
- "EXECUTE_SUCCESS",
2733
- "EXECUTE_FAILED"
2734
- ]
2735
- },
2736
- "ProvisionedProductPlanSummary":{
2737
- "type":"structure",
2738
- "members":{
2739
- "PlanName":{"shape":"ProvisionedProductPlanName"},
2740
- "PlanId":{"shape":"Id"},
2741
- "ProvisionProductId":{"shape":"Id"},
2742
- "ProvisionProductName":{"shape":"ProvisionedProductName"},
2743
- "PlanType":{"shape":"ProvisionedProductPlanType"},
2744
- "ProvisioningArtifactId":{"shape":"Id"}
2745
- }
2746
- },
2747
- "ProvisionedProductPlanType":{
2748
- "type":"string",
2749
- "enum":["CLOUDFORMATION"]
2750
- },
2751
- "ProvisionedProductPlans":{
2752
- "type":"list",
2753
- "member":{"shape":"ProvisionedProductPlanSummary"}
2754
- },
2755
- "ProvisionedProductStatus":{
2756
- "type":"string",
2757
- "enum":[
2758
- "AVAILABLE",
2759
- "UNDER_CHANGE",
2760
- "TAINTED",
2761
- "ERROR",
2762
- "PLAN_IN_PROGRESS"
2763
- ]
2764
- },
2765
- "ProvisionedProductStatusMessage":{"type":"string"},
2766
- "ProvisionedProductType":{"type":"string"},
2767
- "ProvisionedProductViewFilterBy":{
2768
- "type":"string",
2769
- "enum":["SearchQuery"]
2770
- },
2771
- "ProvisionedProductViewFilterValue":{"type":"string"},
2772
- "ProvisionedProductViewFilterValues":{
2773
- "type":"list",
2774
- "member":{"shape":"ProvisionedProductViewFilterValue"}
2775
- },
2776
- "ProvisioningArtifact":{
2777
- "type":"structure",
2778
- "members":{
2779
- "Id":{"shape":"Id"},
2780
- "Name":{"shape":"ProvisioningArtifactName"},
2781
- "Description":{"shape":"ProvisioningArtifactDescription"},
2782
- "CreatedTime":{"shape":"ProvisioningArtifactCreatedTime"}
2783
- }
2784
- },
2785
- "ProvisioningArtifactActive":{"type":"boolean"},
2786
- "ProvisioningArtifactCreatedTime":{"type":"timestamp"},
2787
- "ProvisioningArtifactDescription":{"type":"string"},
2788
- "ProvisioningArtifactDetail":{
2789
- "type":"structure",
2790
- "members":{
2791
- "Id":{"shape":"Id"},
2792
- "Name":{"shape":"ProvisioningArtifactName"},
2793
- "Description":{"shape":"ProvisioningArtifactName"},
2794
- "Type":{"shape":"ProvisioningArtifactType"},
2795
- "CreatedTime":{"shape":"CreationTime"},
2796
- "Active":{"shape":"ProvisioningArtifactActive"}
2797
- }
2798
- },
2799
- "ProvisioningArtifactDetails":{
2800
- "type":"list",
2801
- "member":{"shape":"ProvisioningArtifactDetail"}
2802
- },
2803
- "ProvisioningArtifactInfo":{
2804
- "type":"map",
2805
- "key":{"shape":"ProvisioningArtifactInfoKey"},
2806
- "value":{"shape":"ProvisioningArtifactInfoValue"},
2807
- "max":100,
2808
- "min":1
2809
- },
2810
- "ProvisioningArtifactInfoKey":{"type":"string"},
2811
- "ProvisioningArtifactInfoValue":{"type":"string"},
2812
- "ProvisioningArtifactName":{"type":"string"},
2813
- "ProvisioningArtifactParameter":{
2814
- "type":"structure",
2815
- "members":{
2816
- "ParameterKey":{"shape":"ParameterKey"},
2817
- "DefaultValue":{"shape":"DefaultValue"},
2818
- "ParameterType":{"shape":"ParameterType"},
2819
- "IsNoEcho":{"shape":"NoEcho"},
2820
- "Description":{"shape":"Description"},
2821
- "ParameterConstraints":{"shape":"ParameterConstraints"}
2822
- }
2823
- },
2824
- "ProvisioningArtifactParameters":{
2825
- "type":"list",
2826
- "member":{"shape":"ProvisioningArtifactParameter"}
2827
- },
2828
- "ProvisioningArtifactPreferences":{
2829
- "type":"structure",
2830
- "members":{
2831
- "StackSetAccounts":{"shape":"StackSetAccounts"},
2832
- "StackSetRegions":{"shape":"StackSetRegions"}
2833
- }
2834
- },
2835
- "ProvisioningArtifactProperties":{
2836
- "type":"structure",
2837
- "required":["Info"],
2838
- "members":{
2839
- "Name":{"shape":"ProvisioningArtifactName"},
2840
- "Description":{"shape":"ProvisioningArtifactDescription"},
2841
- "Info":{"shape":"ProvisioningArtifactInfo"},
2842
- "Type":{"shape":"ProvisioningArtifactType"}
2843
- }
2844
- },
2845
- "ProvisioningArtifactPropertyName":{
2846
- "type":"string",
2847
- "enum":["Id"]
2848
- },
2849
- "ProvisioningArtifactPropertyValue":{"type":"string"},
2850
- "ProvisioningArtifactSummaries":{
2851
- "type":"list",
2852
- "member":{"shape":"ProvisioningArtifactSummary"}
2853
- },
2854
- "ProvisioningArtifactSummary":{
2855
- "type":"structure",
2856
- "members":{
2857
- "Id":{"shape":"Id"},
2858
- "Name":{"shape":"ProvisioningArtifactName"},
2859
- "Description":{"shape":"ProvisioningArtifactDescription"},
2860
- "CreatedTime":{"shape":"ProvisioningArtifactCreatedTime"},
2861
- "ProvisioningArtifactMetadata":{"shape":"ProvisioningArtifactInfo"}
2862
- }
2863
- },
2864
- "ProvisioningArtifactType":{
2865
- "type":"string",
2866
- "enum":[
2867
- "CLOUD_FORMATION_TEMPLATE",
2868
- "MARKETPLACE_AMI",
2869
- "MARKETPLACE_CAR"
2870
- ]
2871
- },
2872
- "ProvisioningArtifactView":{
2873
- "type":"structure",
2874
- "members":{
2875
- "ProductViewSummary":{"shape":"ProductViewSummary"},
2876
- "ProvisioningArtifact":{"shape":"ProvisioningArtifact"}
2877
- }
2878
- },
2879
- "ProvisioningArtifactViews":{
2880
- "type":"list",
2881
- "member":{"shape":"ProvisioningArtifactView"}
2882
- },
2883
- "ProvisioningArtifacts":{
2884
- "type":"list",
2885
- "member":{"shape":"ProvisioningArtifact"}
2886
- },
2887
- "ProvisioningParameter":{
2888
- "type":"structure",
2889
- "members":{
2890
- "Key":{"shape":"ParameterKey"},
2891
- "Value":{"shape":"ParameterValue"}
2892
- }
2893
- },
2894
- "ProvisioningParameters":{
2895
- "type":"list",
2896
- "member":{"shape":"ProvisioningParameter"}
2897
- },
2898
- "ProvisioningPreferences":{
2899
- "type":"structure",
2900
- "members":{
2901
- "StackSetAccounts":{"shape":"StackSetAccounts"},
2902
- "StackSetRegions":{"shape":"StackSetRegions"},
2903
- "StackSetFailureToleranceCount":{"shape":"StackSetFailureToleranceCount"},
2904
- "StackSetFailureTolerancePercentage":{"shape":"StackSetFailureTolerancePercentage"},
2905
- "StackSetMaxConcurrencyCount":{"shape":"StackSetMaxConcurrencyCount"},
2906
- "StackSetMaxConcurrencyPercentage":{"shape":"StackSetMaxConcurrencyPercentage"}
2907
- }
2908
- },
2909
- "RecordDetail":{
2910
- "type":"structure",
2911
- "members":{
2912
- "RecordId":{"shape":"Id"},
2913
- "ProvisionedProductName":{"shape":"ProvisionedProductName"},
2914
- "Status":{"shape":"RecordStatus"},
2915
- "CreatedTime":{"shape":"CreatedTime"},
2916
- "UpdatedTime":{"shape":"UpdatedTime"},
2917
- "ProvisionedProductType":{"shape":"ProvisionedProductType"},
2918
- "RecordType":{"shape":"RecordType"},
2919
- "ProvisionedProductId":{"shape":"Id"},
2920
- "ProductId":{"shape":"Id"},
2921
- "ProvisioningArtifactId":{"shape":"Id"},
2922
- "PathId":{"shape":"Id"},
2923
- "RecordErrors":{"shape":"RecordErrors"},
2924
- "RecordTags":{"shape":"RecordTags"}
2925
- }
2926
- },
2927
- "RecordDetails":{
2928
- "type":"list",
2929
- "member":{"shape":"RecordDetail"}
2930
- },
2931
- "RecordError":{
2932
- "type":"structure",
2933
- "members":{
2934
- "Code":{"shape":"ErrorCode"},
2935
- "Description":{"shape":"ErrorDescription"}
2936
- }
2937
- },
2938
- "RecordErrors":{
2939
- "type":"list",
2940
- "member":{"shape":"RecordError"}
2941
- },
2942
- "RecordOutput":{
2943
- "type":"structure",
2944
- "members":{
2945
- "OutputKey":{"shape":"OutputKey"},
2946
- "OutputValue":{"shape":"OutputValue"},
2947
- "Description":{"shape":"Description"}
2948
- }
2949
- },
2950
- "RecordOutputs":{
2951
- "type":"list",
2952
- "member":{"shape":"RecordOutput"}
2953
- },
2954
- "RecordStatus":{
2955
- "type":"string",
2956
- "enum":[
2957
- "CREATED",
2958
- "IN_PROGRESS",
2959
- "IN_PROGRESS_IN_ERROR",
2960
- "SUCCEEDED",
2961
- "FAILED"
2962
- ]
2963
- },
2964
- "RecordTag":{
2965
- "type":"structure",
2966
- "members":{
2967
- "Key":{"shape":"RecordTagKey"},
2968
- "Value":{"shape":"RecordTagValue"}
2969
- }
2970
- },
2971
- "RecordTagKey":{
2972
- "type":"string",
2973
- "max":128,
2974
- "min":1,
2975
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$"
2976
- },
2977
- "RecordTagValue":{
2978
- "type":"string",
2979
- "max":256,
2980
- "min":1,
2981
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$"
2982
- },
2983
- "RecordTags":{
2984
- "type":"list",
2985
- "member":{"shape":"RecordTag"},
2986
- "max":50
2987
- },
2988
- "RecordType":{"type":"string"},
2989
- "Region":{"type":"string"},
2990
- "RejectPortfolioShareInput":{
2991
- "type":"structure",
2992
- "required":["PortfolioId"],
2993
- "members":{
2994
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2995
- "PortfolioId":{"shape":"Id"},
2996
- "PortfolioShareType":{"shape":"PortfolioShareType"}
2997
- }
2998
- },
2999
- "RejectPortfolioShareOutput":{
3000
- "type":"structure",
3001
- "members":{
3002
- }
3003
- },
3004
- "Replacement":{
3005
- "type":"string",
3006
- "enum":[
3007
- "TRUE",
3008
- "FALSE",
3009
- "CONDITIONAL"
3010
- ]
3011
- },
3012
- "RequiresRecreation":{
3013
- "type":"string",
3014
- "enum":[
3015
- "NEVER",
3016
- "CONDITIONALLY",
3017
- "ALWAYS"
3018
- ]
3019
- },
3020
- "ResourceARN":{
3021
- "type":"string",
3022
- "max":150,
3023
- "min":1
3024
- },
3025
- "ResourceAttribute":{
3026
- "type":"string",
3027
- "enum":[
3028
- "PROPERTIES",
3029
- "METADATA",
3030
- "CREATIONPOLICY",
3031
- "UPDATEPOLICY",
3032
- "DELETIONPOLICY",
3033
- "TAGS"
3034
- ]
3035
- },
3036
- "ResourceChange":{
3037
- "type":"structure",
3038
- "members":{
3039
- "Action":{"shape":"ChangeAction"},
3040
- "LogicalResourceId":{"shape":"LogicalResourceId"},
3041
- "PhysicalResourceId":{"shape":"PhysicalResourceId"},
3042
- "ResourceType":{"shape":"PlanResourceType"},
3043
- "Replacement":{"shape":"Replacement"},
3044
- "Scope":{"shape":"Scope"},
3045
- "Details":{"shape":"ResourceChangeDetails"}
3046
- }
3047
- },
3048
- "ResourceChangeDetail":{
3049
- "type":"structure",
3050
- "members":{
3051
- "Target":{"shape":"ResourceTargetDefinition"},
3052
- "Evaluation":{"shape":"EvaluationType"},
3053
- "CausingEntity":{"shape":"CausingEntity"}
3054
- }
3055
- },
3056
- "ResourceChangeDetails":{
3057
- "type":"list",
3058
- "member":{"shape":"ResourceChangeDetail"}
3059
- },
3060
- "ResourceChanges":{
3061
- "type":"list",
3062
- "member":{"shape":"ResourceChange"}
3063
- },
3064
- "ResourceDetail":{
3065
- "type":"structure",
3066
- "members":{
3067
- "Id":{"shape":"ResourceDetailId"},
3068
- "ARN":{"shape":"ResourceDetailARN"},
3069
- "Name":{"shape":"ResourceDetailName"},
3070
- "Description":{"shape":"ResourceDetailDescription"},
3071
- "CreatedTime":{"shape":"ResourceDetailCreatedTime"}
3072
- }
3073
- },
3074
- "ResourceDetailARN":{"type":"string"},
3075
- "ResourceDetailCreatedTime":{"type":"timestamp"},
3076
- "ResourceDetailDescription":{"type":"string"},
3077
- "ResourceDetailId":{"type":"string"},
3078
- "ResourceDetailName":{"type":"string"},
3079
- "ResourceDetails":{
3080
- "type":"list",
3081
- "member":{"shape":"ResourceDetail"}
3082
- },
3083
- "ResourceId":{"type":"string"},
3084
- "ResourceInUseException":{
3085
- "type":"structure",
3086
- "members":{
3087
- },
3088
- "exception":true
3089
- },
3090
- "ResourceNotFoundException":{
3091
- "type":"structure",
3092
- "members":{
3093
- },
3094
- "exception":true
3095
- },
3096
- "ResourceTargetDefinition":{
3097
- "type":"structure",
3098
- "members":{
3099
- "Attribute":{"shape":"ResourceAttribute"},
3100
- "Name":{"shape":"PropertyName"},
3101
- "RequiresRecreation":{"shape":"RequiresRecreation"}
3102
- }
3103
- },
3104
- "ResourceType":{"type":"string"},
3105
- "ScanProvisionedProductsInput":{
3106
- "type":"structure",
3107
- "members":{
3108
- "AcceptLanguage":{"shape":"AcceptLanguage"},
3109
- "AccessLevelFilter":{"shape":"AccessLevelFilter"},
3110
- "PageSize":{"shape":"PageSize"},
3111
- "PageToken":{"shape":"PageToken"}
3112
- }
3113
- },
3114
- "ScanProvisionedProductsOutput":{
3115
- "type":"structure",
3116
- "members":{
3117
- "ProvisionedProducts":{"shape":"ProvisionedProductDetails"},
3118
- "NextPageToken":{"shape":"PageToken"}
3119
- }
3120
- },
3121
- "Scope":{
3122
- "type":"list",
3123
- "member":{"shape":"ResourceAttribute"}
3124
- },
3125
- "SearchFilterKey":{"type":"string"},
3126
- "SearchFilterValue":{"type":"string"},
3127
- "SearchProductsAsAdminInput":{
3128
- "type":"structure",
3129
- "members":{
3130
- "AcceptLanguage":{"shape":"AcceptLanguage"},
3131
- "PortfolioId":{"shape":"Id"},
3132
- "Filters":{"shape":"ProductViewFilters"},
3133
- "SortBy":{"shape":"ProductViewSortBy"},
3134
- "SortOrder":{"shape":"SortOrder"},
3135
- "PageToken":{"shape":"PageToken"},
3136
- "PageSize":{"shape":"PageSize"},
3137
- "ProductSource":{"shape":"ProductSource"}
3138
- }
3139
- },
3140
- "SearchProductsAsAdminOutput":{
3141
- "type":"structure",
3142
- "members":{
3143
- "ProductViewDetails":{"shape":"ProductViewDetails"},
3144
- "NextPageToken":{"shape":"PageToken"}
3145
- }
3146
- },
3147
- "SearchProductsInput":{
3148
- "type":"structure",
3149
- "members":{
3150
- "AcceptLanguage":{"shape":"AcceptLanguage"},
3151
- "Filters":{"shape":"ProductViewFilters"},
3152
- "PageSize":{"shape":"PageSize"},
3153
- "SortBy":{"shape":"ProductViewSortBy"},
3154
- "SortOrder":{"shape":"SortOrder"},
3155
- "PageToken":{"shape":"PageToken"}
3156
- }
3157
- },
3158
- "SearchProductsOutput":{
3159
- "type":"structure",
3160
- "members":{
3161
- "ProductViewSummaries":{"shape":"ProductViewSummaries"},
3162
- "ProductViewAggregations":{"shape":"ProductViewAggregations"},
3163
- "NextPageToken":{"shape":"PageToken"}
3164
- }
3165
- },
3166
- "SearchProvisionedProductsInput":{
3167
- "type":"structure",
3168
- "members":{
3169
- "AcceptLanguage":{"shape":"AcceptLanguage"},
3170
- "AccessLevelFilter":{"shape":"AccessLevelFilter"},
3171
- "Filters":{"shape":"ProvisionedProductFilters"},
3172
- "SortBy":{"shape":"SortField"},
3173
- "SortOrder":{"shape":"SortOrder"},
3174
- "PageSize":{"shape":"SearchProvisionedProductsPageSize"},
3175
- "PageToken":{"shape":"PageToken"}
3176
- }
3177
- },
3178
- "SearchProvisionedProductsOutput":{
3179
- "type":"structure",
3180
- "members":{
3181
- "ProvisionedProducts":{"shape":"ProvisionedProductAttributes"},
3182
- "TotalResultsCount":{"shape":"TotalResultsCount"},
3183
- "NextPageToken":{"shape":"PageToken"}
3184
- }
3185
- },
3186
- "SearchProvisionedProductsPageSize":{
3187
- "type":"integer",
3188
- "max":100,
3189
- "min":0
3190
- },
3191
- "ServiceActionAssociation":{
3192
- "type":"structure",
3193
- "required":[
3194
- "ServiceActionId",
3195
- "ProductId",
3196
- "ProvisioningArtifactId"
3197
- ],
3198
- "members":{
3199
- "ServiceActionId":{"shape":"Id"},
3200
- "ProductId":{"shape":"Id"},
3201
- "ProvisioningArtifactId":{"shape":"Id"}
3202
- }
3203
- },
3204
- "ServiceActionAssociationErrorCode":{
3205
- "type":"string",
3206
- "enum":[
3207
- "DUPLICATE_RESOURCE",
3208
- "INTERNAL_FAILURE",
3209
- "LIMIT_EXCEEDED",
3210
- "RESOURCE_NOT_FOUND",
3211
- "THROTTLING"
3212
- ]
3213
- },
3214
- "ServiceActionAssociationErrorMessage":{
3215
- "type":"string",
3216
- "max":1024,
3217
- "min":1
3218
- },
3219
- "ServiceActionAssociations":{
3220
- "type":"list",
3221
- "member":{"shape":"ServiceActionAssociation"},
3222
- "max":50,
3223
- "min":1
3224
- },
3225
- "ServiceActionDefinitionKey":{
3226
- "type":"string",
3227
- "enum":[
3228
- "Name",
3229
- "Version",
3230
- "AssumeRole",
3231
- "Parameters"
3232
- ]
3233
- },
3234
- "ServiceActionDefinitionMap":{
3235
- "type":"map",
3236
- "key":{"shape":"ServiceActionDefinitionKey"},
3237
- "value":{"shape":"ServiceActionDefinitionValue"},
3238
- "max":100,
3239
- "min":1
3240
- },
3241
- "ServiceActionDefinitionType":{
3242
- "type":"string",
3243
- "enum":["SSM_AUTOMATION"]
3244
- },
3245
- "ServiceActionDefinitionValue":{
3246
- "type":"string",
3247
- "max":1024,
3248
- "min":1
3249
- },
3250
- "ServiceActionDescription":{
3251
- "type":"string",
3252
- "max":1024
3253
- },
3254
- "ServiceActionDetail":{
3255
- "type":"structure",
3256
- "members":{
3257
- "ServiceActionSummary":{"shape":"ServiceActionSummary"},
3258
- "Definition":{"shape":"ServiceActionDefinitionMap"}
3259
- }
3260
- },
3261
- "ServiceActionName":{
3262
- "type":"string",
3263
- "max":256,
3264
- "min":1,
3265
- "pattern":"^[a-zA-Z0-9_\\-.]*"
3266
- },
3267
- "ServiceActionSummaries":{
3268
- "type":"list",
3269
- "member":{"shape":"ServiceActionSummary"}
3270
- },
3271
- "ServiceActionSummary":{
3272
- "type":"structure",
3273
- "members":{
3274
- "Id":{"shape":"Id"},
3275
- "Name":{"shape":"ServiceActionName"},
3276
- "Description":{"shape":"ServiceActionDescription"},
3277
- "DefinitionType":{"shape":"ServiceActionDefinitionType"}
3278
- }
3279
- },
3280
- "ShareDetails":{
3281
- "type":"structure",
3282
- "members":{
3283
- "SuccessfulShares":{"shape":"SuccessfulShares"},
3284
- "ShareErrors":{"shape":"ShareErrors"}
3285
- }
3286
- },
3287
- "ShareError":{
3288
- "type":"structure",
3289
- "members":{
3290
- "Accounts":{"shape":"Namespaces"},
3291
- "Message":{"shape":"Message"},
3292
- "Error":{"shape":"Error"}
3293
- }
3294
- },
3295
- "ShareErrors":{
3296
- "type":"list",
3297
- "member":{"shape":"ShareError"}
3298
- },
3299
- "ShareStatus":{
3300
- "type":"string",
3301
- "enum":[
3302
- "NOT_STARTED",
3303
- "IN_PROGRESS",
3304
- "COMPLETED",
3305
- "COMPLETED_WITH_ERRORS",
3306
- "ERROR"
3307
- ]
3308
- },
3309
- "SortField":{"type":"string"},
3310
- "SortOrder":{
3311
- "type":"string",
3312
- "enum":[
3313
- "ASCENDING",
3314
- "DESCENDING"
3315
- ]
3316
- },
3317
- "SourceProvisioningArtifactProperties":{
3318
- "type":"list",
3319
- "member":{"shape":"SourceProvisioningArtifactPropertiesMap"}
3320
- },
3321
- "SourceProvisioningArtifactPropertiesMap":{
3322
- "type":"map",
3323
- "key":{"shape":"ProvisioningArtifactPropertyName"},
3324
- "value":{"shape":"ProvisioningArtifactPropertyValue"}
3325
- },
3326
- "StackSetAccounts":{
3327
- "type":"list",
3328
- "member":{"shape":"AccountId"}
3329
- },
3330
- "StackSetFailureToleranceCount":{
3331
- "type":"integer",
3332
- "min":0
3333
- },
3334
- "StackSetFailureTolerancePercentage":{
3335
- "type":"integer",
3336
- "max":100,
3337
- "min":0
3338
- },
3339
- "StackSetMaxConcurrencyCount":{
3340
- "type":"integer",
3341
- "min":1
3342
- },
3343
- "StackSetMaxConcurrencyPercentage":{
3344
- "type":"integer",
3345
- "max":100,
3346
- "min":1
3347
- },
3348
- "StackSetOperationType":{
3349
- "type":"string",
3350
- "enum":[
3351
- "CREATE",
3352
- "UPDATE",
3353
- "DELETE"
3354
- ]
3355
- },
3356
- "StackSetRegions":{
3357
- "type":"list",
3358
- "member":{"shape":"Region"}
3359
- },
3360
- "Status":{
3361
- "type":"string",
3362
- "enum":[
3363
- "AVAILABLE",
3364
- "CREATING",
3365
- "FAILED"
3366
- ]
3367
- },
3368
- "StatusDetail":{"type":"string"},
3369
- "StatusMessage":{
3370
- "type":"string",
3371
- "pattern":"[\\u0009\\u000a\\u000d\\u0020-\\uD7FF\\uE000-\\uFFFD]*"
3372
- },
3373
- "SuccessfulShares":{
3374
- "type":"list",
3375
- "member":{"shape":"AccountId"}
3376
- },
3377
- "SupportDescription":{
3378
- "type":"string",
3379
- "max":8191
3380
- },
3381
- "SupportEmail":{
3382
- "type":"string",
3383
- "max":254
3384
- },
3385
- "SupportUrl":{
3386
- "type":"string",
3387
- "max":2083
3388
- },
3389
- "Tag":{
3390
- "type":"structure",
3391
- "required":[
3392
- "Key",
3393
- "Value"
3394
- ],
3395
- "members":{
3396
- "Key":{"shape":"TagKey"},
3397
- "Value":{"shape":"TagValue"}
3398
- }
3399
- },
3400
- "TagKey":{
3401
- "type":"string",
3402
- "max":128,
3403
- "min":1,
3404
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
3405
- },
3406
- "TagKeys":{
3407
- "type":"list",
3408
- "member":{"shape":"TagKey"}
3409
- },
3410
- "TagOptionActive":{"type":"boolean"},
3411
- "TagOptionDetail":{
3412
- "type":"structure",
3413
- "members":{
3414
- "Key":{"shape":"TagOptionKey"},
3415
- "Value":{"shape":"TagOptionValue"},
3416
- "Active":{"shape":"TagOptionActive"},
3417
- "Id":{"shape":"TagOptionId"}
3418
- }
3419
- },
3420
- "TagOptionDetails":{
3421
- "type":"list",
3422
- "member":{"shape":"TagOptionDetail"}
3423
- },
3424
- "TagOptionId":{
3425
- "type":"string",
3426
- "max":100,
3427
- "min":1
3428
- },
3429
- "TagOptionKey":{
3430
- "type":"string",
3431
- "max":128,
3432
- "min":1,
3433
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
3434
- },
3435
- "TagOptionNotMigratedException":{
3436
- "type":"structure",
3437
- "members":{
3438
- },
3439
- "exception":true
3440
- },
3441
- "TagOptionSummaries":{
3442
- "type":"list",
3443
- "member":{"shape":"TagOptionSummary"}
3444
- },
3445
- "TagOptionSummary":{
3446
- "type":"structure",
3447
- "members":{
3448
- "Key":{"shape":"TagOptionKey"},
3449
- "Values":{"shape":"TagOptionValues"}
3450
- }
3451
- },
3452
- "TagOptionValue":{
3453
- "type":"string",
3454
- "max":256,
3455
- "min":1,
3456
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
3457
- },
3458
- "TagOptionValues":{
3459
- "type":"list",
3460
- "member":{"shape":"TagOptionValue"}
3461
- },
3462
- "TagValue":{
3463
- "type":"string",
3464
- "max":256,
3465
- "min":1,
3466
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
3467
- },
3468
- "Tags":{
3469
- "type":"list",
3470
- "member":{"shape":"Tag"},
3471
- "max":50
3472
- },
3473
- "TerminateProvisionedProductInput":{
3474
- "type":"structure",
3475
- "required":["TerminateToken"],
3476
- "members":{
3477
- "ProvisionedProductName":{"shape":"ProvisionedProductNameOrArn"},
3478
- "ProvisionedProductId":{"shape":"Id"},
3479
- "TerminateToken":{
3480
- "shape":"IdempotencyToken",
3481
- "idempotencyToken":true
3482
- },
3483
- "IgnoreErrors":{"shape":"IgnoreErrors"},
3484
- "AcceptLanguage":{"shape":"AcceptLanguage"}
3485
- }
3486
- },
3487
- "TerminateProvisionedProductOutput":{
3488
- "type":"structure",
3489
- "members":{
3490
- "RecordDetail":{"shape":"RecordDetail"}
3491
- }
3492
- },
3493
- "TotalResultsCount":{"type":"integer"},
3494
- "UpdateConstraintInput":{
3495
- "type":"structure",
3496
- "required":["Id"],
3497
- "members":{
3498
- "AcceptLanguage":{"shape":"AcceptLanguage"},
3499
- "Id":{"shape":"Id"},
3500
- "Description":{"shape":"ConstraintDescription"}
3501
- }
3502
- },
3503
- "UpdateConstraintOutput":{
3504
- "type":"structure",
3505
- "members":{
3506
- "ConstraintDetail":{"shape":"ConstraintDetail"},
3507
- "ConstraintParameters":{"shape":"ConstraintParameters"},
3508
- "Status":{"shape":"Status"}
3509
- }
3510
- },
3511
- "UpdatePortfolioInput":{
3512
- "type":"structure",
3513
- "required":["Id"],
3514
- "members":{
3515
- "AcceptLanguage":{"shape":"AcceptLanguage"},
3516
- "Id":{"shape":"Id"},
3517
- "DisplayName":{"shape":"PortfolioDisplayName"},
3518
- "Description":{"shape":"PortfolioDescription"},
3519
- "ProviderName":{"shape":"ProviderName"},
3520
- "AddTags":{"shape":"AddTags"},
3521
- "RemoveTags":{"shape":"TagKeys"}
3522
- }
3523
- },
3524
- "UpdatePortfolioOutput":{
3525
- "type":"structure",
3526
- "members":{
3527
- "PortfolioDetail":{"shape":"PortfolioDetail"},
3528
- "Tags":{"shape":"Tags"}
3529
- }
3530
- },
3531
- "UpdateProductInput":{
3532
- "type":"structure",
3533
- "required":["Id"],
3534
- "members":{
3535
- "AcceptLanguage":{"shape":"AcceptLanguage"},
3536
- "Id":{"shape":"Id"},
3537
- "Name":{"shape":"ProductViewName"},
3538
- "Owner":{"shape":"ProductViewOwner"},
3539
- "Description":{"shape":"ProductViewShortDescription"},
3540
- "Distributor":{"shape":"ProductViewOwner"},
3541
- "SupportDescription":{"shape":"SupportDescription"},
3542
- "SupportEmail":{"shape":"SupportEmail"},
3543
- "SupportUrl":{"shape":"SupportUrl"},
3544
- "AddTags":{"shape":"AddTags"},
3545
- "RemoveTags":{"shape":"TagKeys"}
3546
- }
3547
- },
3548
- "UpdateProductOutput":{
3549
- "type":"structure",
3550
- "members":{
3551
- "ProductViewDetail":{"shape":"ProductViewDetail"},
3552
- "Tags":{"shape":"Tags"}
3553
- }
3554
- },
3555
- "UpdateProvisionedProductInput":{
3556
- "type":"structure",
3557
- "required":["UpdateToken"],
3558
- "members":{
3559
- "AcceptLanguage":{"shape":"AcceptLanguage"},
3560
- "ProvisionedProductName":{"shape":"ProvisionedProductNameOrArn"},
3561
- "ProvisionedProductId":{"shape":"Id"},
3562
- "ProductId":{"shape":"Id"},
3563
- "ProvisioningArtifactId":{"shape":"Id"},
3564
- "PathId":{"shape":"Id"},
3565
- "ProvisioningParameters":{"shape":"UpdateProvisioningParameters"},
3566
- "ProvisioningPreferences":{"shape":"UpdateProvisioningPreferences"},
3567
- "UpdateToken":{
3568
- "shape":"IdempotencyToken",
3569
- "idempotencyToken":true
3570
- }
3571
- }
3572
- },
3573
- "UpdateProvisionedProductOutput":{
3574
- "type":"structure",
3575
- "members":{
3576
- "RecordDetail":{"shape":"RecordDetail"}
3577
- }
3578
- },
3579
- "UpdateProvisioningArtifactInput":{
3580
- "type":"structure",
3581
- "required":[
3582
- "ProductId",
3583
- "ProvisioningArtifactId"
3584
- ],
3585
- "members":{
3586
- "AcceptLanguage":{"shape":"AcceptLanguage"},
3587
- "ProductId":{"shape":"Id"},
3588
- "ProvisioningArtifactId":{"shape":"Id"},
3589
- "Name":{"shape":"ProvisioningArtifactName"},
3590
- "Description":{"shape":"ProvisioningArtifactDescription"},
3591
- "Active":{"shape":"ProvisioningArtifactActive"}
3592
- }
3593
- },
3594
- "UpdateProvisioningArtifactOutput":{
3595
- "type":"structure",
3596
- "members":{
3597
- "ProvisioningArtifactDetail":{"shape":"ProvisioningArtifactDetail"},
3598
- "Info":{"shape":"ProvisioningArtifactInfo"},
3599
- "Status":{"shape":"Status"}
3600
- }
3601
- },
3602
- "UpdateProvisioningParameter":{
3603
- "type":"structure",
3604
- "members":{
3605
- "Key":{"shape":"ParameterKey"},
3606
- "Value":{"shape":"ParameterValue"},
3607
- "UsePreviousValue":{"shape":"UsePreviousValue"}
3608
- }
3609
- },
3610
- "UpdateProvisioningParameters":{
3611
- "type":"list",
3612
- "member":{"shape":"UpdateProvisioningParameter"}
3613
- },
3614
- "UpdateProvisioningPreferences":{
3615
- "type":"structure",
3616
- "members":{
3617
- "StackSetAccounts":{"shape":"StackSetAccounts"},
3618
- "StackSetRegions":{"shape":"StackSetRegions"},
3619
- "StackSetFailureToleranceCount":{"shape":"StackSetFailureToleranceCount"},
3620
- "StackSetFailureTolerancePercentage":{"shape":"StackSetFailureTolerancePercentage"},
3621
- "StackSetMaxConcurrencyCount":{"shape":"StackSetMaxConcurrencyCount"},
3622
- "StackSetMaxConcurrencyPercentage":{"shape":"StackSetMaxConcurrencyPercentage"},
3623
- "StackSetOperationType":{"shape":"StackSetOperationType"}
3624
- }
3625
- },
3626
- "UpdateServiceActionInput":{
3627
- "type":"structure",
3628
- "required":["Id"],
3629
- "members":{
3630
- "Id":{"shape":"Id"},
3631
- "Name":{"shape":"ServiceActionName"},
3632
- "Definition":{"shape":"ServiceActionDefinitionMap"},
3633
- "Description":{"shape":"ServiceActionDescription"},
3634
- "AcceptLanguage":{"shape":"AcceptLanguage"}
3635
- }
3636
- },
3637
- "UpdateServiceActionOutput":{
3638
- "type":"structure",
3639
- "members":{
3640
- "ServiceActionDetail":{"shape":"ServiceActionDetail"}
3641
- }
3642
- },
3643
- "UpdateTagOptionInput":{
3644
- "type":"structure",
3645
- "required":["Id"],
3646
- "members":{
3647
- "Id":{"shape":"TagOptionId"},
3648
- "Value":{"shape":"TagOptionValue"},
3649
- "Active":{"shape":"TagOptionActive"}
3650
- }
3651
- },
3652
- "UpdateTagOptionOutput":{
3653
- "type":"structure",
3654
- "members":{
3655
- "TagOptionDetail":{"shape":"TagOptionDetail"}
3656
- }
3657
- },
3658
- "UpdatedTime":{"type":"timestamp"},
3659
- "UsageInstruction":{
3660
- "type":"structure",
3661
- "members":{
3662
- "Type":{"shape":"InstructionType"},
3663
- "Value":{"shape":"InstructionValue"}
3664
- }
3665
- },
3666
- "UsageInstructions":{
3667
- "type":"list",
3668
- "member":{"shape":"UsageInstruction"}
3669
- },
3670
- "UsePreviousValue":{"type":"boolean"},
3671
- "UserArn":{"type":"string"},
3672
- "UserArnSession":{"type":"string"},
3673
- "Verbose":{"type":"boolean"}
3674
- }
3675
- }