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,4936 +0,0 @@
1
- {
2
- "metadata" : {
3
- "apiVersion" : "2017-06-07",
4
- "endpointPrefix" : "greengrass",
5
- "signingName" : "greengrass",
6
- "serviceFullName" : "AWS Greengrass",
7
- "serviceId" : "Greengrass",
8
- "protocol" : "rest-json",
9
- "jsonVersion" : "1.1",
10
- "uid" : "greengrass-2017-06-07",
11
- "signatureVersion" : "v4"
12
- },
13
- "operations" : {
14
- "AssociateRoleToGroup" : {
15
- "name" : "AssociateRoleToGroup",
16
- "http" : {
17
- "method" : "PUT",
18
- "requestUri" : "/greengrass/groups/{GroupId}/role",
19
- "responseCode" : 200
20
- },
21
- "input" : {
22
- "shape" : "AssociateRoleToGroupRequest"
23
- },
24
- "output" : {
25
- "shape" : "AssociateRoleToGroupResponse"
26
- },
27
- "errors" : [ {
28
- "shape" : "BadRequestException"
29
- }, {
30
- "shape" : "InternalServerErrorException"
31
- } ]
32
- },
33
- "AssociateServiceRoleToAccount" : {
34
- "name" : "AssociateServiceRoleToAccount",
35
- "http" : {
36
- "method" : "PUT",
37
- "requestUri" : "/greengrass/servicerole",
38
- "responseCode" : 200
39
- },
40
- "input" : {
41
- "shape" : "AssociateServiceRoleToAccountRequest"
42
- },
43
- "output" : {
44
- "shape" : "AssociateServiceRoleToAccountResponse"
45
- },
46
- "errors" : [ {
47
- "shape" : "BadRequestException"
48
- }, {
49
- "shape" : "InternalServerErrorException"
50
- } ]
51
- },
52
- "CreateConnectorDefinition" : {
53
- "name" : "CreateConnectorDefinition",
54
- "http" : {
55
- "method" : "POST",
56
- "requestUri" : "/greengrass/definition/connectors",
57
- "responseCode" : 200
58
- },
59
- "input" : {
60
- "shape" : "CreateConnectorDefinitionRequest"
61
- },
62
- "output" : {
63
- "shape" : "CreateConnectorDefinitionResponse"
64
- },
65
- "errors" : [ {
66
- "shape" : "BadRequestException"
67
- } ]
68
- },
69
- "CreateConnectorDefinitionVersion" : {
70
- "name" : "CreateConnectorDefinitionVersion",
71
- "http" : {
72
- "method" : "POST",
73
- "requestUri" : "/greengrass/definition/connectors/{ConnectorDefinitionId}/versions",
74
- "responseCode" : 200
75
- },
76
- "input" : {
77
- "shape" : "CreateConnectorDefinitionVersionRequest"
78
- },
79
- "output" : {
80
- "shape" : "CreateConnectorDefinitionVersionResponse"
81
- },
82
- "errors" : [ {
83
- "shape" : "BadRequestException"
84
- } ]
85
- },
86
- "CreateCoreDefinition" : {
87
- "name" : "CreateCoreDefinition",
88
- "http" : {
89
- "method" : "POST",
90
- "requestUri" : "/greengrass/definition/cores",
91
- "responseCode" : 200
92
- },
93
- "input" : {
94
- "shape" : "CreateCoreDefinitionRequest"
95
- },
96
- "output" : {
97
- "shape" : "CreateCoreDefinitionResponse"
98
- },
99
- "errors" : [ {
100
- "shape" : "BadRequestException"
101
- } ]
102
- },
103
- "CreateCoreDefinitionVersion" : {
104
- "name" : "CreateCoreDefinitionVersion",
105
- "http" : {
106
- "method" : "POST",
107
- "requestUri" : "/greengrass/definition/cores/{CoreDefinitionId}/versions",
108
- "responseCode" : 200
109
- },
110
- "input" : {
111
- "shape" : "CreateCoreDefinitionVersionRequest"
112
- },
113
- "output" : {
114
- "shape" : "CreateCoreDefinitionVersionResponse"
115
- },
116
- "errors" : [ {
117
- "shape" : "BadRequestException"
118
- } ]
119
- },
120
- "CreateDeployment" : {
121
- "name" : "CreateDeployment",
122
- "http" : {
123
- "method" : "POST",
124
- "requestUri" : "/greengrass/groups/{GroupId}/deployments",
125
- "responseCode" : 200
126
- },
127
- "input" : {
128
- "shape" : "CreateDeploymentRequest"
129
- },
130
- "output" : {
131
- "shape" : "CreateDeploymentResponse"
132
- },
133
- "errors" : [ {
134
- "shape" : "BadRequestException"
135
- } ]
136
- },
137
- "CreateDeviceDefinition" : {
138
- "name" : "CreateDeviceDefinition",
139
- "http" : {
140
- "method" : "POST",
141
- "requestUri" : "/greengrass/definition/devices",
142
- "responseCode" : 200
143
- },
144
- "input" : {
145
- "shape" : "CreateDeviceDefinitionRequest"
146
- },
147
- "output" : {
148
- "shape" : "CreateDeviceDefinitionResponse"
149
- },
150
- "errors" : [ {
151
- "shape" : "BadRequestException"
152
- } ]
153
- },
154
- "CreateDeviceDefinitionVersion" : {
155
- "name" : "CreateDeviceDefinitionVersion",
156
- "http" : {
157
- "method" : "POST",
158
- "requestUri" : "/greengrass/definition/devices/{DeviceDefinitionId}/versions",
159
- "responseCode" : 200
160
- },
161
- "input" : {
162
- "shape" : "CreateDeviceDefinitionVersionRequest"
163
- },
164
- "output" : {
165
- "shape" : "CreateDeviceDefinitionVersionResponse"
166
- },
167
- "errors" : [ {
168
- "shape" : "BadRequestException"
169
- } ]
170
- },
171
- "CreateFunctionDefinition" : {
172
- "name" : "CreateFunctionDefinition",
173
- "http" : {
174
- "method" : "POST",
175
- "requestUri" : "/greengrass/definition/functions",
176
- "responseCode" : 200
177
- },
178
- "input" : {
179
- "shape" : "CreateFunctionDefinitionRequest"
180
- },
181
- "output" : {
182
- "shape" : "CreateFunctionDefinitionResponse"
183
- },
184
- "errors" : [ {
185
- "shape" : "BadRequestException"
186
- } ]
187
- },
188
- "CreateFunctionDefinitionVersion" : {
189
- "name" : "CreateFunctionDefinitionVersion",
190
- "http" : {
191
- "method" : "POST",
192
- "requestUri" : "/greengrass/definition/functions/{FunctionDefinitionId}/versions",
193
- "responseCode" : 200
194
- },
195
- "input" : {
196
- "shape" : "CreateFunctionDefinitionVersionRequest"
197
- },
198
- "output" : {
199
- "shape" : "CreateFunctionDefinitionVersionResponse"
200
- },
201
- "errors" : [ {
202
- "shape" : "BadRequestException"
203
- } ]
204
- },
205
- "CreateGroup" : {
206
- "name" : "CreateGroup",
207
- "http" : {
208
- "method" : "POST",
209
- "requestUri" : "/greengrass/groups",
210
- "responseCode" : 200
211
- },
212
- "input" : {
213
- "shape" : "CreateGroupRequest"
214
- },
215
- "output" : {
216
- "shape" : "CreateGroupResponse"
217
- },
218
- "errors" : [ {
219
- "shape" : "BadRequestException"
220
- } ]
221
- },
222
- "CreateGroupCertificateAuthority" : {
223
- "name" : "CreateGroupCertificateAuthority",
224
- "http" : {
225
- "method" : "POST",
226
- "requestUri" : "/greengrass/groups/{GroupId}/certificateauthorities",
227
- "responseCode" : 200
228
- },
229
- "input" : {
230
- "shape" : "CreateGroupCertificateAuthorityRequest"
231
- },
232
- "output" : {
233
- "shape" : "CreateGroupCertificateAuthorityResponse"
234
- },
235
- "errors" : [ {
236
- "shape" : "BadRequestException"
237
- }, {
238
- "shape" : "InternalServerErrorException"
239
- } ]
240
- },
241
- "CreateGroupVersion" : {
242
- "name" : "CreateGroupVersion",
243
- "http" : {
244
- "method" : "POST",
245
- "requestUri" : "/greengrass/groups/{GroupId}/versions",
246
- "responseCode" : 200
247
- },
248
- "input" : {
249
- "shape" : "CreateGroupVersionRequest"
250
- },
251
- "output" : {
252
- "shape" : "CreateGroupVersionResponse"
253
- },
254
- "errors" : [ {
255
- "shape" : "BadRequestException"
256
- } ]
257
- },
258
- "CreateLoggerDefinition" : {
259
- "name" : "CreateLoggerDefinition",
260
- "http" : {
261
- "method" : "POST",
262
- "requestUri" : "/greengrass/definition/loggers",
263
- "responseCode" : 200
264
- },
265
- "input" : {
266
- "shape" : "CreateLoggerDefinitionRequest"
267
- },
268
- "output" : {
269
- "shape" : "CreateLoggerDefinitionResponse"
270
- },
271
- "errors" : [ {
272
- "shape" : "BadRequestException"
273
- } ]
274
- },
275
- "CreateLoggerDefinitionVersion" : {
276
- "name" : "CreateLoggerDefinitionVersion",
277
- "http" : {
278
- "method" : "POST",
279
- "requestUri" : "/greengrass/definition/loggers/{LoggerDefinitionId}/versions",
280
- "responseCode" : 200
281
- },
282
- "input" : {
283
- "shape" : "CreateLoggerDefinitionVersionRequest"
284
- },
285
- "output" : {
286
- "shape" : "CreateLoggerDefinitionVersionResponse"
287
- },
288
- "errors" : [ {
289
- "shape" : "BadRequestException"
290
- } ]
291
- },
292
- "CreateResourceDefinition" : {
293
- "name" : "CreateResourceDefinition",
294
- "http" : {
295
- "method" : "POST",
296
- "requestUri" : "/greengrass/definition/resources",
297
- "responseCode" : 200
298
- },
299
- "input" : {
300
- "shape" : "CreateResourceDefinitionRequest"
301
- },
302
- "output" : {
303
- "shape" : "CreateResourceDefinitionResponse"
304
- },
305
- "errors" : [ {
306
- "shape" : "BadRequestException"
307
- } ]
308
- },
309
- "CreateResourceDefinitionVersion" : {
310
- "name" : "CreateResourceDefinitionVersion",
311
- "http" : {
312
- "method" : "POST",
313
- "requestUri" : "/greengrass/definition/resources/{ResourceDefinitionId}/versions",
314
- "responseCode" : 200
315
- },
316
- "input" : {
317
- "shape" : "CreateResourceDefinitionVersionRequest"
318
- },
319
- "output" : {
320
- "shape" : "CreateResourceDefinitionVersionResponse"
321
- },
322
- "errors" : [ {
323
- "shape" : "BadRequestException"
324
- } ]
325
- },
326
- "CreateSoftwareUpdateJob" : {
327
- "name" : "CreateSoftwareUpdateJob",
328
- "http" : {
329
- "method" : "POST",
330
- "requestUri" : "/greengrass/updates",
331
- "responseCode" : 200
332
- },
333
- "input" : {
334
- "shape" : "CreateSoftwareUpdateJobRequest"
335
- },
336
- "output" : {
337
- "shape" : "CreateSoftwareUpdateJobResponse"
338
- },
339
- "errors" : [ {
340
- "shape" : "BadRequestException"
341
- }, {
342
- "shape" : "InternalServerErrorException"
343
- } ]
344
- },
345
- "CreateSubscriptionDefinition" : {
346
- "name" : "CreateSubscriptionDefinition",
347
- "http" : {
348
- "method" : "POST",
349
- "requestUri" : "/greengrass/definition/subscriptions",
350
- "responseCode" : 200
351
- },
352
- "input" : {
353
- "shape" : "CreateSubscriptionDefinitionRequest"
354
- },
355
- "output" : {
356
- "shape" : "CreateSubscriptionDefinitionResponse"
357
- },
358
- "errors" : [ {
359
- "shape" : "BadRequestException"
360
- } ]
361
- },
362
- "CreateSubscriptionDefinitionVersion" : {
363
- "name" : "CreateSubscriptionDefinitionVersion",
364
- "http" : {
365
- "method" : "POST",
366
- "requestUri" : "/greengrass/definition/subscriptions/{SubscriptionDefinitionId}/versions",
367
- "responseCode" : 200
368
- },
369
- "input" : {
370
- "shape" : "CreateSubscriptionDefinitionVersionRequest"
371
- },
372
- "output" : {
373
- "shape" : "CreateSubscriptionDefinitionVersionResponse"
374
- },
375
- "errors" : [ {
376
- "shape" : "BadRequestException"
377
- } ]
378
- },
379
- "DeleteConnectorDefinition" : {
380
- "name" : "DeleteConnectorDefinition",
381
- "http" : {
382
- "method" : "DELETE",
383
- "requestUri" : "/greengrass/definition/connectors/{ConnectorDefinitionId}",
384
- "responseCode" : 200
385
- },
386
- "input" : {
387
- "shape" : "DeleteConnectorDefinitionRequest"
388
- },
389
- "output" : {
390
- "shape" : "DeleteConnectorDefinitionResponse"
391
- },
392
- "errors" : [ {
393
- "shape" : "BadRequestException"
394
- } ]
395
- },
396
- "DeleteCoreDefinition" : {
397
- "name" : "DeleteCoreDefinition",
398
- "http" : {
399
- "method" : "DELETE",
400
- "requestUri" : "/greengrass/definition/cores/{CoreDefinitionId}",
401
- "responseCode" : 200
402
- },
403
- "input" : {
404
- "shape" : "DeleteCoreDefinitionRequest"
405
- },
406
- "output" : {
407
- "shape" : "DeleteCoreDefinitionResponse"
408
- },
409
- "errors" : [ {
410
- "shape" : "BadRequestException"
411
- } ]
412
- },
413
- "DeleteDeviceDefinition" : {
414
- "name" : "DeleteDeviceDefinition",
415
- "http" : {
416
- "method" : "DELETE",
417
- "requestUri" : "/greengrass/definition/devices/{DeviceDefinitionId}",
418
- "responseCode" : 200
419
- },
420
- "input" : {
421
- "shape" : "DeleteDeviceDefinitionRequest"
422
- },
423
- "output" : {
424
- "shape" : "DeleteDeviceDefinitionResponse"
425
- },
426
- "errors" : [ {
427
- "shape" : "BadRequestException"
428
- } ]
429
- },
430
- "DeleteFunctionDefinition" : {
431
- "name" : "DeleteFunctionDefinition",
432
- "http" : {
433
- "method" : "DELETE",
434
- "requestUri" : "/greengrass/definition/functions/{FunctionDefinitionId}",
435
- "responseCode" : 200
436
- },
437
- "input" : {
438
- "shape" : "DeleteFunctionDefinitionRequest"
439
- },
440
- "output" : {
441
- "shape" : "DeleteFunctionDefinitionResponse"
442
- },
443
- "errors" : [ {
444
- "shape" : "BadRequestException"
445
- } ]
446
- },
447
- "DeleteGroup" : {
448
- "name" : "DeleteGroup",
449
- "http" : {
450
- "method" : "DELETE",
451
- "requestUri" : "/greengrass/groups/{GroupId}",
452
- "responseCode" : 200
453
- },
454
- "input" : {
455
- "shape" : "DeleteGroupRequest"
456
- },
457
- "output" : {
458
- "shape" : "DeleteGroupResponse"
459
- },
460
- "errors" : [ {
461
- "shape" : "BadRequestException"
462
- } ]
463
- },
464
- "DeleteLoggerDefinition" : {
465
- "name" : "DeleteLoggerDefinition",
466
- "http" : {
467
- "method" : "DELETE",
468
- "requestUri" : "/greengrass/definition/loggers/{LoggerDefinitionId}",
469
- "responseCode" : 200
470
- },
471
- "input" : {
472
- "shape" : "DeleteLoggerDefinitionRequest"
473
- },
474
- "output" : {
475
- "shape" : "DeleteLoggerDefinitionResponse"
476
- },
477
- "errors" : [ {
478
- "shape" : "BadRequestException"
479
- } ]
480
- },
481
- "DeleteResourceDefinition" : {
482
- "name" : "DeleteResourceDefinition",
483
- "http" : {
484
- "method" : "DELETE",
485
- "requestUri" : "/greengrass/definition/resources/{ResourceDefinitionId}",
486
- "responseCode" : 200
487
- },
488
- "input" : {
489
- "shape" : "DeleteResourceDefinitionRequest"
490
- },
491
- "output" : {
492
- "shape" : "DeleteResourceDefinitionResponse"
493
- },
494
- "errors" : [ {
495
- "shape" : "BadRequestException"
496
- } ]
497
- },
498
- "DeleteSubscriptionDefinition" : {
499
- "name" : "DeleteSubscriptionDefinition",
500
- "http" : {
501
- "method" : "DELETE",
502
- "requestUri" : "/greengrass/definition/subscriptions/{SubscriptionDefinitionId}",
503
- "responseCode" : 200
504
- },
505
- "input" : {
506
- "shape" : "DeleteSubscriptionDefinitionRequest"
507
- },
508
- "output" : {
509
- "shape" : "DeleteSubscriptionDefinitionResponse"
510
- },
511
- "errors" : [ {
512
- "shape" : "BadRequestException"
513
- } ]
514
- },
515
- "DisassociateRoleFromGroup" : {
516
- "name" : "DisassociateRoleFromGroup",
517
- "http" : {
518
- "method" : "DELETE",
519
- "requestUri" : "/greengrass/groups/{GroupId}/role",
520
- "responseCode" : 200
521
- },
522
- "input" : {
523
- "shape" : "DisassociateRoleFromGroupRequest"
524
- },
525
- "output" : {
526
- "shape" : "DisassociateRoleFromGroupResponse"
527
- },
528
- "errors" : [ {
529
- "shape" : "BadRequestException"
530
- }, {
531
- "shape" : "InternalServerErrorException"
532
- } ]
533
- },
534
- "DisassociateServiceRoleFromAccount" : {
535
- "name" : "DisassociateServiceRoleFromAccount",
536
- "http" : {
537
- "method" : "DELETE",
538
- "requestUri" : "/greengrass/servicerole",
539
- "responseCode" : 200
540
- },
541
- "input" : {
542
- "shape" : "DisassociateServiceRoleFromAccountRequest"
543
- },
544
- "output" : {
545
- "shape" : "DisassociateServiceRoleFromAccountResponse"
546
- },
547
- "errors" : [ {
548
- "shape" : "InternalServerErrorException"
549
- } ]
550
- },
551
- "GetAssociatedRole" : {
552
- "name" : "GetAssociatedRole",
553
- "http" : {
554
- "method" : "GET",
555
- "requestUri" : "/greengrass/groups/{GroupId}/role",
556
- "responseCode" : 200
557
- },
558
- "input" : {
559
- "shape" : "GetAssociatedRoleRequest"
560
- },
561
- "output" : {
562
- "shape" : "GetAssociatedRoleResponse"
563
- },
564
- "errors" : [ {
565
- "shape" : "BadRequestException"
566
- }, {
567
- "shape" : "InternalServerErrorException"
568
- } ]
569
- },
570
- "GetBulkDeploymentStatus" : {
571
- "name" : "GetBulkDeploymentStatus",
572
- "http" : {
573
- "method" : "GET",
574
- "requestUri" : "/greengrass/bulk/deployments/{BulkDeploymentId}/status",
575
- "responseCode" : 200
576
- },
577
- "input" : {
578
- "shape" : "GetBulkDeploymentStatusRequest"
579
- },
580
- "output" : {
581
- "shape" : "GetBulkDeploymentStatusResponse"
582
- },
583
- "errors" : [ {
584
- "shape" : "BadRequestException"
585
- } ]
586
- },
587
- "GetConnectivityInfo" : {
588
- "name" : "GetConnectivityInfo",
589
- "http" : {
590
- "method" : "GET",
591
- "requestUri" : "/greengrass/things/{ThingName}/connectivityInfo",
592
- "responseCode" : 200
593
- },
594
- "input" : {
595
- "shape" : "GetConnectivityInfoRequest"
596
- },
597
- "output" : {
598
- "shape" : "GetConnectivityInfoResponse"
599
- },
600
- "errors" : [ {
601
- "shape" : "BadRequestException"
602
- }, {
603
- "shape" : "InternalServerErrorException"
604
- } ]
605
- },
606
- "GetConnectorDefinition" : {
607
- "name" : "GetConnectorDefinition",
608
- "http" : {
609
- "method" : "GET",
610
- "requestUri" : "/greengrass/definition/connectors/{ConnectorDefinitionId}",
611
- "responseCode" : 200
612
- },
613
- "input" : {
614
- "shape" : "GetConnectorDefinitionRequest"
615
- },
616
- "output" : {
617
- "shape" : "GetConnectorDefinitionResponse"
618
- },
619
- "errors" : [ {
620
- "shape" : "BadRequestException"
621
- } ]
622
- },
623
- "GetConnectorDefinitionVersion" : {
624
- "name" : "GetConnectorDefinitionVersion",
625
- "http" : {
626
- "method" : "GET",
627
- "requestUri" : "/greengrass/definition/connectors/{ConnectorDefinitionId}/versions/{ConnectorDefinitionVersionId}",
628
- "responseCode" : 200
629
- },
630
- "input" : {
631
- "shape" : "GetConnectorDefinitionVersionRequest"
632
- },
633
- "output" : {
634
- "shape" : "GetConnectorDefinitionVersionResponse"
635
- },
636
- "errors" : [ {
637
- "shape" : "BadRequestException"
638
- } ]
639
- },
640
- "GetCoreDefinition" : {
641
- "name" : "GetCoreDefinition",
642
- "http" : {
643
- "method" : "GET",
644
- "requestUri" : "/greengrass/definition/cores/{CoreDefinitionId}",
645
- "responseCode" : 200
646
- },
647
- "input" : {
648
- "shape" : "GetCoreDefinitionRequest"
649
- },
650
- "output" : {
651
- "shape" : "GetCoreDefinitionResponse"
652
- },
653
- "errors" : [ {
654
- "shape" : "BadRequestException"
655
- } ]
656
- },
657
- "GetCoreDefinitionVersion" : {
658
- "name" : "GetCoreDefinitionVersion",
659
- "http" : {
660
- "method" : "GET",
661
- "requestUri" : "/greengrass/definition/cores/{CoreDefinitionId}/versions/{CoreDefinitionVersionId}",
662
- "responseCode" : 200
663
- },
664
- "input" : {
665
- "shape" : "GetCoreDefinitionVersionRequest"
666
- },
667
- "output" : {
668
- "shape" : "GetCoreDefinitionVersionResponse"
669
- },
670
- "errors" : [ {
671
- "shape" : "BadRequestException"
672
- } ]
673
- },
674
- "GetDeploymentStatus" : {
675
- "name" : "GetDeploymentStatus",
676
- "http" : {
677
- "method" : "GET",
678
- "requestUri" : "/greengrass/groups/{GroupId}/deployments/{DeploymentId}/status",
679
- "responseCode" : 200
680
- },
681
- "input" : {
682
- "shape" : "GetDeploymentStatusRequest"
683
- },
684
- "output" : {
685
- "shape" : "GetDeploymentStatusResponse"
686
- },
687
- "errors" : [ {
688
- "shape" : "BadRequestException"
689
- } ]
690
- },
691
- "GetDeviceDefinition" : {
692
- "name" : "GetDeviceDefinition",
693
- "http" : {
694
- "method" : "GET",
695
- "requestUri" : "/greengrass/definition/devices/{DeviceDefinitionId}",
696
- "responseCode" : 200
697
- },
698
- "input" : {
699
- "shape" : "GetDeviceDefinitionRequest"
700
- },
701
- "output" : {
702
- "shape" : "GetDeviceDefinitionResponse"
703
- },
704
- "errors" : [ {
705
- "shape" : "BadRequestException"
706
- } ]
707
- },
708
- "GetDeviceDefinitionVersion" : {
709
- "name" : "GetDeviceDefinitionVersion",
710
- "http" : {
711
- "method" : "GET",
712
- "requestUri" : "/greengrass/definition/devices/{DeviceDefinitionId}/versions/{DeviceDefinitionVersionId}",
713
- "responseCode" : 200
714
- },
715
- "input" : {
716
- "shape" : "GetDeviceDefinitionVersionRequest"
717
- },
718
- "output" : {
719
- "shape" : "GetDeviceDefinitionVersionResponse"
720
- },
721
- "errors" : [ {
722
- "shape" : "BadRequestException"
723
- } ]
724
- },
725
- "GetFunctionDefinition" : {
726
- "name" : "GetFunctionDefinition",
727
- "http" : {
728
- "method" : "GET",
729
- "requestUri" : "/greengrass/definition/functions/{FunctionDefinitionId}",
730
- "responseCode" : 200
731
- },
732
- "input" : {
733
- "shape" : "GetFunctionDefinitionRequest"
734
- },
735
- "output" : {
736
- "shape" : "GetFunctionDefinitionResponse"
737
- },
738
- "errors" : [ {
739
- "shape" : "BadRequestException"
740
- } ]
741
- },
742
- "GetFunctionDefinitionVersion" : {
743
- "name" : "GetFunctionDefinitionVersion",
744
- "http" : {
745
- "method" : "GET",
746
- "requestUri" : "/greengrass/definition/functions/{FunctionDefinitionId}/versions/{FunctionDefinitionVersionId}",
747
- "responseCode" : 200
748
- },
749
- "input" : {
750
- "shape" : "GetFunctionDefinitionVersionRequest"
751
- },
752
- "output" : {
753
- "shape" : "GetFunctionDefinitionVersionResponse"
754
- },
755
- "errors" : [ {
756
- "shape" : "BadRequestException"
757
- } ]
758
- },
759
- "GetGroup" : {
760
- "name" : "GetGroup",
761
- "http" : {
762
- "method" : "GET",
763
- "requestUri" : "/greengrass/groups/{GroupId}",
764
- "responseCode" : 200
765
- },
766
- "input" : {
767
- "shape" : "GetGroupRequest"
768
- },
769
- "output" : {
770
- "shape" : "GetGroupResponse"
771
- },
772
- "errors" : [ {
773
- "shape" : "BadRequestException"
774
- } ]
775
- },
776
- "GetGroupCertificateAuthority" : {
777
- "name" : "GetGroupCertificateAuthority",
778
- "http" : {
779
- "method" : "GET",
780
- "requestUri" : "/greengrass/groups/{GroupId}/certificateauthorities/{CertificateAuthorityId}",
781
- "responseCode" : 200
782
- },
783
- "input" : {
784
- "shape" : "GetGroupCertificateAuthorityRequest"
785
- },
786
- "output" : {
787
- "shape" : "GetGroupCertificateAuthorityResponse"
788
- },
789
- "errors" : [ {
790
- "shape" : "BadRequestException"
791
- }, {
792
- "shape" : "InternalServerErrorException"
793
- } ]
794
- },
795
- "GetGroupCertificateConfiguration" : {
796
- "name" : "GetGroupCertificateConfiguration",
797
- "http" : {
798
- "method" : "GET",
799
- "requestUri" : "/greengrass/groups/{GroupId}/certificateauthorities/configuration/expiry",
800
- "responseCode" : 200
801
- },
802
- "input" : {
803
- "shape" : "GetGroupCertificateConfigurationRequest"
804
- },
805
- "output" : {
806
- "shape" : "GetGroupCertificateConfigurationResponse"
807
- },
808
- "errors" : [ {
809
- "shape" : "BadRequestException"
810
- }, {
811
- "shape" : "InternalServerErrorException"
812
- } ]
813
- },
814
- "GetGroupVersion" : {
815
- "name" : "GetGroupVersion",
816
- "http" : {
817
- "method" : "GET",
818
- "requestUri" : "/greengrass/groups/{GroupId}/versions/{GroupVersionId}",
819
- "responseCode" : 200
820
- },
821
- "input" : {
822
- "shape" : "GetGroupVersionRequest"
823
- },
824
- "output" : {
825
- "shape" : "GetGroupVersionResponse"
826
- },
827
- "errors" : [ {
828
- "shape" : "BadRequestException"
829
- } ]
830
- },
831
- "GetLoggerDefinition" : {
832
- "name" : "GetLoggerDefinition",
833
- "http" : {
834
- "method" : "GET",
835
- "requestUri" : "/greengrass/definition/loggers/{LoggerDefinitionId}",
836
- "responseCode" : 200
837
- },
838
- "input" : {
839
- "shape" : "GetLoggerDefinitionRequest"
840
- },
841
- "output" : {
842
- "shape" : "GetLoggerDefinitionResponse"
843
- },
844
- "errors" : [ {
845
- "shape" : "BadRequestException"
846
- } ]
847
- },
848
- "GetLoggerDefinitionVersion" : {
849
- "name" : "GetLoggerDefinitionVersion",
850
- "http" : {
851
- "method" : "GET",
852
- "requestUri" : "/greengrass/definition/loggers/{LoggerDefinitionId}/versions/{LoggerDefinitionVersionId}",
853
- "responseCode" : 200
854
- },
855
- "input" : {
856
- "shape" : "GetLoggerDefinitionVersionRequest"
857
- },
858
- "output" : {
859
- "shape" : "GetLoggerDefinitionVersionResponse"
860
- },
861
- "errors" : [ {
862
- "shape" : "BadRequestException"
863
- } ]
864
- },
865
- "GetResourceDefinition" : {
866
- "name" : "GetResourceDefinition",
867
- "http" : {
868
- "method" : "GET",
869
- "requestUri" : "/greengrass/definition/resources/{ResourceDefinitionId}",
870
- "responseCode" : 200
871
- },
872
- "input" : {
873
- "shape" : "GetResourceDefinitionRequest"
874
- },
875
- "output" : {
876
- "shape" : "GetResourceDefinitionResponse"
877
- },
878
- "errors" : [ {
879
- "shape" : "BadRequestException"
880
- } ]
881
- },
882
- "GetResourceDefinitionVersion" : {
883
- "name" : "GetResourceDefinitionVersion",
884
- "http" : {
885
- "method" : "GET",
886
- "requestUri" : "/greengrass/definition/resources/{ResourceDefinitionId}/versions/{ResourceDefinitionVersionId}",
887
- "responseCode" : 200
888
- },
889
- "input" : {
890
- "shape" : "GetResourceDefinitionVersionRequest"
891
- },
892
- "output" : {
893
- "shape" : "GetResourceDefinitionVersionResponse"
894
- },
895
- "errors" : [ {
896
- "shape" : "BadRequestException"
897
- } ]
898
- },
899
- "GetServiceRoleForAccount" : {
900
- "name" : "GetServiceRoleForAccount",
901
- "http" : {
902
- "method" : "GET",
903
- "requestUri" : "/greengrass/servicerole",
904
- "responseCode" : 200
905
- },
906
- "input" : {
907
- "shape" : "GetServiceRoleForAccountRequest"
908
- },
909
- "output" : {
910
- "shape" : "GetServiceRoleForAccountResponse"
911
- },
912
- "errors" : [ {
913
- "shape" : "InternalServerErrorException"
914
- } ]
915
- },
916
- "GetSubscriptionDefinition" : {
917
- "name" : "GetSubscriptionDefinition",
918
- "http" : {
919
- "method" : "GET",
920
- "requestUri" : "/greengrass/definition/subscriptions/{SubscriptionDefinitionId}",
921
- "responseCode" : 200
922
- },
923
- "input" : {
924
- "shape" : "GetSubscriptionDefinitionRequest"
925
- },
926
- "output" : {
927
- "shape" : "GetSubscriptionDefinitionResponse"
928
- },
929
- "errors" : [ {
930
- "shape" : "BadRequestException"
931
- } ]
932
- },
933
- "GetSubscriptionDefinitionVersion" : {
934
- "name" : "GetSubscriptionDefinitionVersion",
935
- "http" : {
936
- "method" : "GET",
937
- "requestUri" : "/greengrass/definition/subscriptions/{SubscriptionDefinitionId}/versions/{SubscriptionDefinitionVersionId}",
938
- "responseCode" : 200
939
- },
940
- "input" : {
941
- "shape" : "GetSubscriptionDefinitionVersionRequest"
942
- },
943
- "output" : {
944
- "shape" : "GetSubscriptionDefinitionVersionResponse"
945
- },
946
- "errors" : [ {
947
- "shape" : "BadRequestException"
948
- } ]
949
- },
950
- "ListBulkDeploymentDetailedReports" : {
951
- "name" : "ListBulkDeploymentDetailedReports",
952
- "http" : {
953
- "method" : "GET",
954
- "requestUri" : "/greengrass/bulk/deployments/{BulkDeploymentId}/detailed-reports",
955
- "responseCode" : 200
956
- },
957
- "input" : {
958
- "shape" : "ListBulkDeploymentDetailedReportsRequest"
959
- },
960
- "output" : {
961
- "shape" : "ListBulkDeploymentDetailedReportsResponse"
962
- },
963
- "errors" : [ {
964
- "shape" : "BadRequestException"
965
- } ]
966
- },
967
- "ListBulkDeployments" : {
968
- "name" : "ListBulkDeployments",
969
- "http" : {
970
- "method" : "GET",
971
- "requestUri" : "/greengrass/bulk/deployments",
972
- "responseCode" : 200
973
- },
974
- "input" : {
975
- "shape" : "ListBulkDeploymentsRequest"
976
- },
977
- "output" : {
978
- "shape" : "ListBulkDeploymentsResponse"
979
- },
980
- "errors" : [ {
981
- "shape" : "BadRequestException"
982
- } ]
983
- },
984
- "ListConnectorDefinitionVersions" : {
985
- "name" : "ListConnectorDefinitionVersions",
986
- "http" : {
987
- "method" : "GET",
988
- "requestUri" : "/greengrass/definition/connectors/{ConnectorDefinitionId}/versions",
989
- "responseCode" : 200
990
- },
991
- "input" : {
992
- "shape" : "ListConnectorDefinitionVersionsRequest"
993
- },
994
- "output" : {
995
- "shape" : "ListConnectorDefinitionVersionsResponse"
996
- },
997
- "errors" : [ {
998
- "shape" : "BadRequestException"
999
- } ]
1000
- },
1001
- "ListConnectorDefinitions" : {
1002
- "name" : "ListConnectorDefinitions",
1003
- "http" : {
1004
- "method" : "GET",
1005
- "requestUri" : "/greengrass/definition/connectors",
1006
- "responseCode" : 200
1007
- },
1008
- "input" : {
1009
- "shape" : "ListConnectorDefinitionsRequest"
1010
- },
1011
- "output" : {
1012
- "shape" : "ListConnectorDefinitionsResponse"
1013
- },
1014
- "errors" : [ ]
1015
- },
1016
- "ListCoreDefinitionVersions" : {
1017
- "name" : "ListCoreDefinitionVersions",
1018
- "http" : {
1019
- "method" : "GET",
1020
- "requestUri" : "/greengrass/definition/cores/{CoreDefinitionId}/versions",
1021
- "responseCode" : 200
1022
- },
1023
- "input" : {
1024
- "shape" : "ListCoreDefinitionVersionsRequest"
1025
- },
1026
- "output" : {
1027
- "shape" : "ListCoreDefinitionVersionsResponse"
1028
- },
1029
- "errors" : [ {
1030
- "shape" : "BadRequestException"
1031
- } ]
1032
- },
1033
- "ListCoreDefinitions" : {
1034
- "name" : "ListCoreDefinitions",
1035
- "http" : {
1036
- "method" : "GET",
1037
- "requestUri" : "/greengrass/definition/cores",
1038
- "responseCode" : 200
1039
- },
1040
- "input" : {
1041
- "shape" : "ListCoreDefinitionsRequest"
1042
- },
1043
- "output" : {
1044
- "shape" : "ListCoreDefinitionsResponse"
1045
- },
1046
- "errors" : [ ]
1047
- },
1048
- "ListDeployments" : {
1049
- "name" : "ListDeployments",
1050
- "http" : {
1051
- "method" : "GET",
1052
- "requestUri" : "/greengrass/groups/{GroupId}/deployments",
1053
- "responseCode" : 200
1054
- },
1055
- "input" : {
1056
- "shape" : "ListDeploymentsRequest"
1057
- },
1058
- "output" : {
1059
- "shape" : "ListDeploymentsResponse"
1060
- },
1061
- "errors" : [ {
1062
- "shape" : "BadRequestException"
1063
- } ]
1064
- },
1065
- "ListDeviceDefinitionVersions" : {
1066
- "name" : "ListDeviceDefinitionVersions",
1067
- "http" : {
1068
- "method" : "GET",
1069
- "requestUri" : "/greengrass/definition/devices/{DeviceDefinitionId}/versions",
1070
- "responseCode" : 200
1071
- },
1072
- "input" : {
1073
- "shape" : "ListDeviceDefinitionVersionsRequest"
1074
- },
1075
- "output" : {
1076
- "shape" : "ListDeviceDefinitionVersionsResponse"
1077
- },
1078
- "errors" : [ {
1079
- "shape" : "BadRequestException"
1080
- } ]
1081
- },
1082
- "ListDeviceDefinitions" : {
1083
- "name" : "ListDeviceDefinitions",
1084
- "http" : {
1085
- "method" : "GET",
1086
- "requestUri" : "/greengrass/definition/devices",
1087
- "responseCode" : 200
1088
- },
1089
- "input" : {
1090
- "shape" : "ListDeviceDefinitionsRequest"
1091
- },
1092
- "output" : {
1093
- "shape" : "ListDeviceDefinitionsResponse"
1094
- },
1095
- "errors" : [ ]
1096
- },
1097
- "ListFunctionDefinitionVersions" : {
1098
- "name" : "ListFunctionDefinitionVersions",
1099
- "http" : {
1100
- "method" : "GET",
1101
- "requestUri" : "/greengrass/definition/functions/{FunctionDefinitionId}/versions",
1102
- "responseCode" : 200
1103
- },
1104
- "input" : {
1105
- "shape" : "ListFunctionDefinitionVersionsRequest"
1106
- },
1107
- "output" : {
1108
- "shape" : "ListFunctionDefinitionVersionsResponse"
1109
- },
1110
- "errors" : [ {
1111
- "shape" : "BadRequestException"
1112
- } ]
1113
- },
1114
- "ListFunctionDefinitions" : {
1115
- "name" : "ListFunctionDefinitions",
1116
- "http" : {
1117
- "method" : "GET",
1118
- "requestUri" : "/greengrass/definition/functions",
1119
- "responseCode" : 200
1120
- },
1121
- "input" : {
1122
- "shape" : "ListFunctionDefinitionsRequest"
1123
- },
1124
- "output" : {
1125
- "shape" : "ListFunctionDefinitionsResponse"
1126
- },
1127
- "errors" : [ ]
1128
- },
1129
- "ListGroupCertificateAuthorities" : {
1130
- "name" : "ListGroupCertificateAuthorities",
1131
- "http" : {
1132
- "method" : "GET",
1133
- "requestUri" : "/greengrass/groups/{GroupId}/certificateauthorities",
1134
- "responseCode" : 200
1135
- },
1136
- "input" : {
1137
- "shape" : "ListGroupCertificateAuthoritiesRequest"
1138
- },
1139
- "output" : {
1140
- "shape" : "ListGroupCertificateAuthoritiesResponse"
1141
- },
1142
- "errors" : [ {
1143
- "shape" : "BadRequestException"
1144
- }, {
1145
- "shape" : "InternalServerErrorException"
1146
- } ]
1147
- },
1148
- "ListGroupVersions" : {
1149
- "name" : "ListGroupVersions",
1150
- "http" : {
1151
- "method" : "GET",
1152
- "requestUri" : "/greengrass/groups/{GroupId}/versions",
1153
- "responseCode" : 200
1154
- },
1155
- "input" : {
1156
- "shape" : "ListGroupVersionsRequest"
1157
- },
1158
- "output" : {
1159
- "shape" : "ListGroupVersionsResponse"
1160
- },
1161
- "errors" : [ {
1162
- "shape" : "BadRequestException"
1163
- } ]
1164
- },
1165
- "ListGroups" : {
1166
- "name" : "ListGroups",
1167
- "http" : {
1168
- "method" : "GET",
1169
- "requestUri" : "/greengrass/groups",
1170
- "responseCode" : 200
1171
- },
1172
- "input" : {
1173
- "shape" : "ListGroupsRequest"
1174
- },
1175
- "output" : {
1176
- "shape" : "ListGroupsResponse"
1177
- },
1178
- "errors" : [ ]
1179
- },
1180
- "ListLoggerDefinitionVersions" : {
1181
- "name" : "ListLoggerDefinitionVersions",
1182
- "http" : {
1183
- "method" : "GET",
1184
- "requestUri" : "/greengrass/definition/loggers/{LoggerDefinitionId}/versions",
1185
- "responseCode" : 200
1186
- },
1187
- "input" : {
1188
- "shape" : "ListLoggerDefinitionVersionsRequest"
1189
- },
1190
- "output" : {
1191
- "shape" : "ListLoggerDefinitionVersionsResponse"
1192
- },
1193
- "errors" : [ {
1194
- "shape" : "BadRequestException"
1195
- } ]
1196
- },
1197
- "ListLoggerDefinitions" : {
1198
- "name" : "ListLoggerDefinitions",
1199
- "http" : {
1200
- "method" : "GET",
1201
- "requestUri" : "/greengrass/definition/loggers",
1202
- "responseCode" : 200
1203
- },
1204
- "input" : {
1205
- "shape" : "ListLoggerDefinitionsRequest"
1206
- },
1207
- "output" : {
1208
- "shape" : "ListLoggerDefinitionsResponse"
1209
- },
1210
- "errors" : [ ]
1211
- },
1212
- "ListResourceDefinitionVersions" : {
1213
- "name" : "ListResourceDefinitionVersions",
1214
- "http" : {
1215
- "method" : "GET",
1216
- "requestUri" : "/greengrass/definition/resources/{ResourceDefinitionId}/versions",
1217
- "responseCode" : 200
1218
- },
1219
- "input" : {
1220
- "shape" : "ListResourceDefinitionVersionsRequest"
1221
- },
1222
- "output" : {
1223
- "shape" : "ListResourceDefinitionVersionsResponse"
1224
- },
1225
- "errors" : [ {
1226
- "shape" : "BadRequestException"
1227
- } ]
1228
- },
1229
- "ListResourceDefinitions" : {
1230
- "name" : "ListResourceDefinitions",
1231
- "http" : {
1232
- "method" : "GET",
1233
- "requestUri" : "/greengrass/definition/resources",
1234
- "responseCode" : 200
1235
- },
1236
- "input" : {
1237
- "shape" : "ListResourceDefinitionsRequest"
1238
- },
1239
- "output" : {
1240
- "shape" : "ListResourceDefinitionsResponse"
1241
- },
1242
- "errors" : [ ]
1243
- },
1244
- "ListSubscriptionDefinitionVersions" : {
1245
- "name" : "ListSubscriptionDefinitionVersions",
1246
- "http" : {
1247
- "method" : "GET",
1248
- "requestUri" : "/greengrass/definition/subscriptions/{SubscriptionDefinitionId}/versions",
1249
- "responseCode" : 200
1250
- },
1251
- "input" : {
1252
- "shape" : "ListSubscriptionDefinitionVersionsRequest"
1253
- },
1254
- "output" : {
1255
- "shape" : "ListSubscriptionDefinitionVersionsResponse"
1256
- },
1257
- "errors" : [ {
1258
- "shape" : "BadRequestException"
1259
- } ]
1260
- },
1261
- "ListSubscriptionDefinitions" : {
1262
- "name" : "ListSubscriptionDefinitions",
1263
- "http" : {
1264
- "method" : "GET",
1265
- "requestUri" : "/greengrass/definition/subscriptions",
1266
- "responseCode" : 200
1267
- },
1268
- "input" : {
1269
- "shape" : "ListSubscriptionDefinitionsRequest"
1270
- },
1271
- "output" : {
1272
- "shape" : "ListSubscriptionDefinitionsResponse"
1273
- },
1274
- "errors" : [ ]
1275
- },
1276
- "ResetDeployments" : {
1277
- "name" : "ResetDeployments",
1278
- "http" : {
1279
- "method" : "POST",
1280
- "requestUri" : "/greengrass/groups/{GroupId}/deployments/$reset",
1281
- "responseCode" : 200
1282
- },
1283
- "input" : {
1284
- "shape" : "ResetDeploymentsRequest"
1285
- },
1286
- "output" : {
1287
- "shape" : "ResetDeploymentsResponse"
1288
- },
1289
- "errors" : [ {
1290
- "shape" : "BadRequestException"
1291
- } ]
1292
- },
1293
- "StartBulkDeployment" : {
1294
- "name" : "StartBulkDeployment",
1295
- "http" : {
1296
- "method" : "POST",
1297
- "requestUri" : "/greengrass/bulk/deployments",
1298
- "responseCode" : 200
1299
- },
1300
- "input" : {
1301
- "shape" : "StartBulkDeploymentRequest"
1302
- },
1303
- "output" : {
1304
- "shape" : "StartBulkDeploymentResponse"
1305
- },
1306
- "errors" : [ {
1307
- "shape" : "BadRequestException"
1308
- } ]
1309
- },
1310
- "StopBulkDeployment" : {
1311
- "name" : "StopBulkDeployment",
1312
- "http" : {
1313
- "method" : "PUT",
1314
- "requestUri" : "/greengrass/bulk/deployments/{BulkDeploymentId}/$stop",
1315
- "responseCode" : 200
1316
- },
1317
- "input" : {
1318
- "shape" : "StopBulkDeploymentRequest"
1319
- },
1320
- "output" : {
1321
- "shape" : "StopBulkDeploymentResponse"
1322
- },
1323
- "errors" : [ {
1324
- "shape" : "BadRequestException"
1325
- } ]
1326
- },
1327
- "UpdateConnectivityInfo" : {
1328
- "name" : "UpdateConnectivityInfo",
1329
- "http" : {
1330
- "method" : "PUT",
1331
- "requestUri" : "/greengrass/things/{ThingName}/connectivityInfo",
1332
- "responseCode" : 200
1333
- },
1334
- "input" : {
1335
- "shape" : "UpdateConnectivityInfoRequest"
1336
- },
1337
- "output" : {
1338
- "shape" : "UpdateConnectivityInfoResponse"
1339
- },
1340
- "errors" : [ {
1341
- "shape" : "BadRequestException"
1342
- }, {
1343
- "shape" : "InternalServerErrorException"
1344
- } ]
1345
- },
1346
- "UpdateConnectorDefinition" : {
1347
- "name" : "UpdateConnectorDefinition",
1348
- "http" : {
1349
- "method" : "PUT",
1350
- "requestUri" : "/greengrass/definition/connectors/{ConnectorDefinitionId}",
1351
- "responseCode" : 200
1352
- },
1353
- "input" : {
1354
- "shape" : "UpdateConnectorDefinitionRequest"
1355
- },
1356
- "output" : {
1357
- "shape" : "UpdateConnectorDefinitionResponse"
1358
- },
1359
- "errors" : [ {
1360
- "shape" : "BadRequestException"
1361
- } ]
1362
- },
1363
- "UpdateCoreDefinition" : {
1364
- "name" : "UpdateCoreDefinition",
1365
- "http" : {
1366
- "method" : "PUT",
1367
- "requestUri" : "/greengrass/definition/cores/{CoreDefinitionId}",
1368
- "responseCode" : 200
1369
- },
1370
- "input" : {
1371
- "shape" : "UpdateCoreDefinitionRequest"
1372
- },
1373
- "output" : {
1374
- "shape" : "UpdateCoreDefinitionResponse"
1375
- },
1376
- "errors" : [ {
1377
- "shape" : "BadRequestException"
1378
- } ]
1379
- },
1380
- "UpdateDeviceDefinition" : {
1381
- "name" : "UpdateDeviceDefinition",
1382
- "http" : {
1383
- "method" : "PUT",
1384
- "requestUri" : "/greengrass/definition/devices/{DeviceDefinitionId}",
1385
- "responseCode" : 200
1386
- },
1387
- "input" : {
1388
- "shape" : "UpdateDeviceDefinitionRequest"
1389
- },
1390
- "output" : {
1391
- "shape" : "UpdateDeviceDefinitionResponse"
1392
- },
1393
- "errors" : [ {
1394
- "shape" : "BadRequestException"
1395
- } ]
1396
- },
1397
- "UpdateFunctionDefinition" : {
1398
- "name" : "UpdateFunctionDefinition",
1399
- "http" : {
1400
- "method" : "PUT",
1401
- "requestUri" : "/greengrass/definition/functions/{FunctionDefinitionId}",
1402
- "responseCode" : 200
1403
- },
1404
- "input" : {
1405
- "shape" : "UpdateFunctionDefinitionRequest"
1406
- },
1407
- "output" : {
1408
- "shape" : "UpdateFunctionDefinitionResponse"
1409
- },
1410
- "errors" : [ {
1411
- "shape" : "BadRequestException"
1412
- } ]
1413
- },
1414
- "UpdateGroup" : {
1415
- "name" : "UpdateGroup",
1416
- "http" : {
1417
- "method" : "PUT",
1418
- "requestUri" : "/greengrass/groups/{GroupId}",
1419
- "responseCode" : 200
1420
- },
1421
- "input" : {
1422
- "shape" : "UpdateGroupRequest"
1423
- },
1424
- "output" : {
1425
- "shape" : "UpdateGroupResponse"
1426
- },
1427
- "errors" : [ {
1428
- "shape" : "BadRequestException"
1429
- } ]
1430
- },
1431
- "UpdateGroupCertificateConfiguration" : {
1432
- "name" : "UpdateGroupCertificateConfiguration",
1433
- "http" : {
1434
- "method" : "PUT",
1435
- "requestUri" : "/greengrass/groups/{GroupId}/certificateauthorities/configuration/expiry",
1436
- "responseCode" : 200
1437
- },
1438
- "input" : {
1439
- "shape" : "UpdateGroupCertificateConfigurationRequest"
1440
- },
1441
- "output" : {
1442
- "shape" : "UpdateGroupCertificateConfigurationResponse"
1443
- },
1444
- "errors" : [ {
1445
- "shape" : "BadRequestException"
1446
- }, {
1447
- "shape" : "InternalServerErrorException"
1448
- } ]
1449
- },
1450
- "UpdateLoggerDefinition" : {
1451
- "name" : "UpdateLoggerDefinition",
1452
- "http" : {
1453
- "method" : "PUT",
1454
- "requestUri" : "/greengrass/definition/loggers/{LoggerDefinitionId}",
1455
- "responseCode" : 200
1456
- },
1457
- "input" : {
1458
- "shape" : "UpdateLoggerDefinitionRequest"
1459
- },
1460
- "output" : {
1461
- "shape" : "UpdateLoggerDefinitionResponse"
1462
- },
1463
- "errors" : [ {
1464
- "shape" : "BadRequestException"
1465
- } ]
1466
- },
1467
- "UpdateResourceDefinition" : {
1468
- "name" : "UpdateResourceDefinition",
1469
- "http" : {
1470
- "method" : "PUT",
1471
- "requestUri" : "/greengrass/definition/resources/{ResourceDefinitionId}",
1472
- "responseCode" : 200
1473
- },
1474
- "input" : {
1475
- "shape" : "UpdateResourceDefinitionRequest"
1476
- },
1477
- "output" : {
1478
- "shape" : "UpdateResourceDefinitionResponse"
1479
- },
1480
- "errors" : [ {
1481
- "shape" : "BadRequestException"
1482
- } ]
1483
- },
1484
- "UpdateSubscriptionDefinition" : {
1485
- "name" : "UpdateSubscriptionDefinition",
1486
- "http" : {
1487
- "method" : "PUT",
1488
- "requestUri" : "/greengrass/definition/subscriptions/{SubscriptionDefinitionId}",
1489
- "responseCode" : 200
1490
- },
1491
- "input" : {
1492
- "shape" : "UpdateSubscriptionDefinitionRequest"
1493
- },
1494
- "output" : {
1495
- "shape" : "UpdateSubscriptionDefinitionResponse"
1496
- },
1497
- "errors" : [ {
1498
- "shape" : "BadRequestException"
1499
- } ]
1500
- }
1501
- },
1502
- "shapes" : {
1503
- "AssociateRoleToGroupRequest" : {
1504
- "type" : "structure",
1505
- "members" : {
1506
- "GroupId" : {
1507
- "shape" : "__string",
1508
- "location" : "uri",
1509
- "locationName" : "GroupId"
1510
- },
1511
- "RoleArn" : {
1512
- "shape" : "__string"
1513
- }
1514
- },
1515
- "required" : [ "GroupId" ]
1516
- },
1517
- "AssociateRoleToGroupResponse" : {
1518
- "type" : "structure",
1519
- "members" : {
1520
- "AssociatedAt" : {
1521
- "shape" : "__string"
1522
- }
1523
- }
1524
- },
1525
- "AssociateServiceRoleToAccountRequest" : {
1526
- "type" : "structure",
1527
- "members" : {
1528
- "RoleArn" : {
1529
- "shape" : "__string"
1530
- }
1531
- }
1532
- },
1533
- "AssociateServiceRoleToAccountResponse" : {
1534
- "type" : "structure",
1535
- "members" : {
1536
- "AssociatedAt" : {
1537
- "shape" : "__string"
1538
- }
1539
- }
1540
- },
1541
- "BadRequestException" : {
1542
- "type" : "structure",
1543
- "members" : {
1544
- "ErrorDetails" : {
1545
- "shape" : "ErrorDetails"
1546
- },
1547
- "Message" : {
1548
- "shape" : "__string"
1549
- }
1550
- },
1551
- "exception" : true,
1552
- "error" : {
1553
- "httpStatusCode" : 400
1554
- }
1555
- },
1556
- "BulkDeployment" : {
1557
- "type" : "structure",
1558
- "members" : {
1559
- "BulkDeploymentArn" : {
1560
- "shape" : "__string"
1561
- },
1562
- "BulkDeploymentId" : {
1563
- "shape" : "__string"
1564
- },
1565
- "CreatedAt" : {
1566
- "shape" : "__string"
1567
- }
1568
- }
1569
- },
1570
- "BulkDeploymentMetrics" : {
1571
- "type" : "structure",
1572
- "members" : {
1573
- "InvalidInputRecords" : {
1574
- "shape" : "__integer"
1575
- },
1576
- "RecordsProcessed" : {
1577
- "shape" : "__integer"
1578
- },
1579
- "RetryAttempts" : {
1580
- "shape" : "__integer"
1581
- }
1582
- }
1583
- },
1584
- "BulkDeploymentResult" : {
1585
- "type" : "structure",
1586
- "members" : {
1587
- "CreatedAt" : {
1588
- "shape" : "__string"
1589
- },
1590
- "DeploymentArn" : {
1591
- "shape" : "__string"
1592
- },
1593
- "DeploymentId" : {
1594
- "shape" : "__string"
1595
- },
1596
- "DeploymentStatus" : {
1597
- "shape" : "__string"
1598
- },
1599
- "DeploymentType" : {
1600
- "shape" : "DeploymentType"
1601
- },
1602
- "ErrorDetails" : {
1603
- "shape" : "ErrorDetails"
1604
- },
1605
- "ErrorMessage" : {
1606
- "shape" : "__string"
1607
- },
1608
- "GroupArn" : {
1609
- "shape" : "__string"
1610
- }
1611
- }
1612
- },
1613
- "BulkDeploymentResults" : {
1614
- "type" : "list",
1615
- "member" : {
1616
- "shape" : "BulkDeploymentResult"
1617
- }
1618
- },
1619
- "BulkDeploymentStatus" : {
1620
- "type" : "string",
1621
- "enum" : [ "Initializing", "Running", "Completed", "Stopping", "Stopped", "Failed" ]
1622
- },
1623
- "BulkDeployments" : {
1624
- "type" : "list",
1625
- "member" : {
1626
- "shape" : "BulkDeployment"
1627
- }
1628
- },
1629
- "ConnectivityInfo" : {
1630
- "type" : "structure",
1631
- "members" : {
1632
- "HostAddress" : {
1633
- "shape" : "__string"
1634
- },
1635
- "Id" : {
1636
- "shape" : "__string"
1637
- },
1638
- "Metadata" : {
1639
- "shape" : "__string"
1640
- },
1641
- "PortNumber" : {
1642
- "shape" : "__integer"
1643
- }
1644
- }
1645
- },
1646
- "Connector" : {
1647
- "type" : "structure",
1648
- "members" : {
1649
- "ConnectorArn" : {
1650
- "shape" : "__string"
1651
- },
1652
- "Id" : {
1653
- "shape" : "__string"
1654
- },
1655
- "Parameters" : {
1656
- "shape" : "__mapOf__string"
1657
- }
1658
- },
1659
- "required" : [ ]
1660
- },
1661
- "ConnectorDefinitionVersion" : {
1662
- "type" : "structure",
1663
- "members" : {
1664
- "Connectors" : {
1665
- "shape" : "__listOfConnector"
1666
- }
1667
- }
1668
- },
1669
- "Core" : {
1670
- "type" : "structure",
1671
- "members" : {
1672
- "CertificateArn" : {
1673
- "shape" : "__string"
1674
- },
1675
- "Id" : {
1676
- "shape" : "__string"
1677
- },
1678
- "SyncShadow" : {
1679
- "shape" : "__boolean"
1680
- },
1681
- "ThingArn" : {
1682
- "shape" : "__string"
1683
- }
1684
- },
1685
- "required" : [ ]
1686
- },
1687
- "CoreDefinitionVersion" : {
1688
- "type" : "structure",
1689
- "members" : {
1690
- "Cores" : {
1691
- "shape" : "__listOfCore"
1692
- }
1693
- }
1694
- },
1695
- "CreateConnectorDefinitionRequest" : {
1696
- "type" : "structure",
1697
- "members" : {
1698
- "AmznClientToken" : {
1699
- "shape" : "__string",
1700
- "location" : "header",
1701
- "locationName" : "X-Amzn-Client-Token"
1702
- },
1703
- "InitialVersion" : {
1704
- "shape" : "ConnectorDefinitionVersion"
1705
- },
1706
- "Name" : {
1707
- "shape" : "__string"
1708
- }
1709
- }
1710
- },
1711
- "CreateConnectorDefinitionResponse" : {
1712
- "type" : "structure",
1713
- "members" : {
1714
- "Arn" : {
1715
- "shape" : "__string"
1716
- },
1717
- "CreationTimestamp" : {
1718
- "shape" : "__string"
1719
- },
1720
- "Id" : {
1721
- "shape" : "__string"
1722
- },
1723
- "LastUpdatedTimestamp" : {
1724
- "shape" : "__string"
1725
- },
1726
- "LatestVersion" : {
1727
- "shape" : "__string"
1728
- },
1729
- "LatestVersionArn" : {
1730
- "shape" : "__string"
1731
- },
1732
- "Name" : {
1733
- "shape" : "__string"
1734
- }
1735
- }
1736
- },
1737
- "CreateConnectorDefinitionVersionRequest" : {
1738
- "type" : "structure",
1739
- "members" : {
1740
- "AmznClientToken" : {
1741
- "shape" : "__string",
1742
- "location" : "header",
1743
- "locationName" : "X-Amzn-Client-Token"
1744
- },
1745
- "ConnectorDefinitionId" : {
1746
- "shape" : "__string",
1747
- "location" : "uri",
1748
- "locationName" : "ConnectorDefinitionId"
1749
- },
1750
- "Connectors" : {
1751
- "shape" : "__listOfConnector"
1752
- }
1753
- },
1754
- "required" : [ "ConnectorDefinitionId" ]
1755
- },
1756
- "CreateConnectorDefinitionVersionResponse" : {
1757
- "type" : "structure",
1758
- "members" : {
1759
- "Arn" : {
1760
- "shape" : "__string"
1761
- },
1762
- "CreationTimestamp" : {
1763
- "shape" : "__string"
1764
- },
1765
- "Id" : {
1766
- "shape" : "__string"
1767
- },
1768
- "Version" : {
1769
- "shape" : "__string"
1770
- }
1771
- }
1772
- },
1773
- "CreateCoreDefinitionRequest" : {
1774
- "type" : "structure",
1775
- "members" : {
1776
- "AmznClientToken" : {
1777
- "shape" : "__string",
1778
- "location" : "header",
1779
- "locationName" : "X-Amzn-Client-Token"
1780
- },
1781
- "InitialVersion" : {
1782
- "shape" : "CoreDefinitionVersion"
1783
- },
1784
- "Name" : {
1785
- "shape" : "__string"
1786
- }
1787
- }
1788
- },
1789
- "CreateCoreDefinitionResponse" : {
1790
- "type" : "structure",
1791
- "members" : {
1792
- "Arn" : {
1793
- "shape" : "__string"
1794
- },
1795
- "CreationTimestamp" : {
1796
- "shape" : "__string"
1797
- },
1798
- "Id" : {
1799
- "shape" : "__string"
1800
- },
1801
- "LastUpdatedTimestamp" : {
1802
- "shape" : "__string"
1803
- },
1804
- "LatestVersion" : {
1805
- "shape" : "__string"
1806
- },
1807
- "LatestVersionArn" : {
1808
- "shape" : "__string"
1809
- },
1810
- "Name" : {
1811
- "shape" : "__string"
1812
- }
1813
- }
1814
- },
1815
- "CreateCoreDefinitionVersionRequest" : {
1816
- "type" : "structure",
1817
- "members" : {
1818
- "AmznClientToken" : {
1819
- "shape" : "__string",
1820
- "location" : "header",
1821
- "locationName" : "X-Amzn-Client-Token"
1822
- },
1823
- "CoreDefinitionId" : {
1824
- "shape" : "__string",
1825
- "location" : "uri",
1826
- "locationName" : "CoreDefinitionId"
1827
- },
1828
- "Cores" : {
1829
- "shape" : "__listOfCore"
1830
- }
1831
- },
1832
- "required" : [ "CoreDefinitionId" ]
1833
- },
1834
- "CreateCoreDefinitionVersionResponse" : {
1835
- "type" : "structure",
1836
- "members" : {
1837
- "Arn" : {
1838
- "shape" : "__string"
1839
- },
1840
- "CreationTimestamp" : {
1841
- "shape" : "__string"
1842
- },
1843
- "Id" : {
1844
- "shape" : "__string"
1845
- },
1846
- "Version" : {
1847
- "shape" : "__string"
1848
- }
1849
- }
1850
- },
1851
- "CreateDeploymentRequest" : {
1852
- "type" : "structure",
1853
- "members" : {
1854
- "AmznClientToken" : {
1855
- "shape" : "__string",
1856
- "location" : "header",
1857
- "locationName" : "X-Amzn-Client-Token"
1858
- },
1859
- "DeploymentId" : {
1860
- "shape" : "__string"
1861
- },
1862
- "DeploymentType" : {
1863
- "shape" : "DeploymentType"
1864
- },
1865
- "GroupId" : {
1866
- "shape" : "__string",
1867
- "location" : "uri",
1868
- "locationName" : "GroupId"
1869
- },
1870
- "GroupVersionId" : {
1871
- "shape" : "__string"
1872
- }
1873
- },
1874
- "required" : [ "GroupId" ]
1875
- },
1876
- "CreateDeploymentResponse" : {
1877
- "type" : "structure",
1878
- "members" : {
1879
- "DeploymentArn" : {
1880
- "shape" : "__string"
1881
- },
1882
- "DeploymentId" : {
1883
- "shape" : "__string"
1884
- }
1885
- }
1886
- },
1887
- "CreateDeviceDefinitionRequest" : {
1888
- "type" : "structure",
1889
- "members" : {
1890
- "AmznClientToken" : {
1891
- "shape" : "__string",
1892
- "location" : "header",
1893
- "locationName" : "X-Amzn-Client-Token"
1894
- },
1895
- "InitialVersion" : {
1896
- "shape" : "DeviceDefinitionVersion"
1897
- },
1898
- "Name" : {
1899
- "shape" : "__string"
1900
- }
1901
- }
1902
- },
1903
- "CreateDeviceDefinitionResponse" : {
1904
- "type" : "structure",
1905
- "members" : {
1906
- "Arn" : {
1907
- "shape" : "__string"
1908
- },
1909
- "CreationTimestamp" : {
1910
- "shape" : "__string"
1911
- },
1912
- "Id" : {
1913
- "shape" : "__string"
1914
- },
1915
- "LastUpdatedTimestamp" : {
1916
- "shape" : "__string"
1917
- },
1918
- "LatestVersion" : {
1919
- "shape" : "__string"
1920
- },
1921
- "LatestVersionArn" : {
1922
- "shape" : "__string"
1923
- },
1924
- "Name" : {
1925
- "shape" : "__string"
1926
- }
1927
- }
1928
- },
1929
- "CreateDeviceDefinitionVersionRequest" : {
1930
- "type" : "structure",
1931
- "members" : {
1932
- "AmznClientToken" : {
1933
- "shape" : "__string",
1934
- "location" : "header",
1935
- "locationName" : "X-Amzn-Client-Token"
1936
- },
1937
- "DeviceDefinitionId" : {
1938
- "shape" : "__string",
1939
- "location" : "uri",
1940
- "locationName" : "DeviceDefinitionId"
1941
- },
1942
- "Devices" : {
1943
- "shape" : "__listOfDevice"
1944
- }
1945
- },
1946
- "required" : [ "DeviceDefinitionId" ]
1947
- },
1948
- "CreateDeviceDefinitionVersionResponse" : {
1949
- "type" : "structure",
1950
- "members" : {
1951
- "Arn" : {
1952
- "shape" : "__string"
1953
- },
1954
- "CreationTimestamp" : {
1955
- "shape" : "__string"
1956
- },
1957
- "Id" : {
1958
- "shape" : "__string"
1959
- },
1960
- "Version" : {
1961
- "shape" : "__string"
1962
- }
1963
- }
1964
- },
1965
- "CreateFunctionDefinitionRequest" : {
1966
- "type" : "structure",
1967
- "members" : {
1968
- "AmznClientToken" : {
1969
- "shape" : "__string",
1970
- "location" : "header",
1971
- "locationName" : "X-Amzn-Client-Token"
1972
- },
1973
- "InitialVersion" : {
1974
- "shape" : "FunctionDefinitionVersion"
1975
- },
1976
- "Name" : {
1977
- "shape" : "__string"
1978
- }
1979
- }
1980
- },
1981
- "CreateFunctionDefinitionResponse" : {
1982
- "type" : "structure",
1983
- "members" : {
1984
- "Arn" : {
1985
- "shape" : "__string"
1986
- },
1987
- "CreationTimestamp" : {
1988
- "shape" : "__string"
1989
- },
1990
- "Id" : {
1991
- "shape" : "__string"
1992
- },
1993
- "LastUpdatedTimestamp" : {
1994
- "shape" : "__string"
1995
- },
1996
- "LatestVersion" : {
1997
- "shape" : "__string"
1998
- },
1999
- "LatestVersionArn" : {
2000
- "shape" : "__string"
2001
- },
2002
- "Name" : {
2003
- "shape" : "__string"
2004
- }
2005
- }
2006
- },
2007
- "CreateFunctionDefinitionVersionRequest" : {
2008
- "type" : "structure",
2009
- "members" : {
2010
- "AmznClientToken" : {
2011
- "shape" : "__string",
2012
- "location" : "header",
2013
- "locationName" : "X-Amzn-Client-Token"
2014
- },
2015
- "DefaultConfig" : {
2016
- "shape" : "FunctionDefaultConfig"
2017
- },
2018
- "FunctionDefinitionId" : {
2019
- "shape" : "__string",
2020
- "location" : "uri",
2021
- "locationName" : "FunctionDefinitionId"
2022
- },
2023
- "Functions" : {
2024
- "shape" : "__listOfFunction"
2025
- }
2026
- },
2027
- "required" : [ "FunctionDefinitionId" ]
2028
- },
2029
- "CreateFunctionDefinitionVersionResponse" : {
2030
- "type" : "structure",
2031
- "members" : {
2032
- "Arn" : {
2033
- "shape" : "__string"
2034
- },
2035
- "CreationTimestamp" : {
2036
- "shape" : "__string"
2037
- },
2038
- "Id" : {
2039
- "shape" : "__string"
2040
- },
2041
- "Version" : {
2042
- "shape" : "__string"
2043
- }
2044
- }
2045
- },
2046
- "CreateGroupCertificateAuthorityRequest" : {
2047
- "type" : "structure",
2048
- "members" : {
2049
- "AmznClientToken" : {
2050
- "shape" : "__string",
2051
- "location" : "header",
2052
- "locationName" : "X-Amzn-Client-Token"
2053
- },
2054
- "GroupId" : {
2055
- "shape" : "__string",
2056
- "location" : "uri",
2057
- "locationName" : "GroupId"
2058
- }
2059
- },
2060
- "required" : [ "GroupId" ]
2061
- },
2062
- "CreateGroupCertificateAuthorityResponse" : {
2063
- "type" : "structure",
2064
- "members" : {
2065
- "GroupCertificateAuthorityArn" : {
2066
- "shape" : "__string"
2067
- }
2068
- }
2069
- },
2070
- "CreateGroupRequest" : {
2071
- "type" : "structure",
2072
- "members" : {
2073
- "AmznClientToken" : {
2074
- "shape" : "__string",
2075
- "location" : "header",
2076
- "locationName" : "X-Amzn-Client-Token"
2077
- },
2078
- "InitialVersion" : {
2079
- "shape" : "GroupVersion"
2080
- },
2081
- "Name" : {
2082
- "shape" : "__string"
2083
- }
2084
- }
2085
- },
2086
- "CreateGroupResponse" : {
2087
- "type" : "structure",
2088
- "members" : {
2089
- "Arn" : {
2090
- "shape" : "__string"
2091
- },
2092
- "CreationTimestamp" : {
2093
- "shape" : "__string"
2094
- },
2095
- "Id" : {
2096
- "shape" : "__string"
2097
- },
2098
- "LastUpdatedTimestamp" : {
2099
- "shape" : "__string"
2100
- },
2101
- "LatestVersion" : {
2102
- "shape" : "__string"
2103
- },
2104
- "LatestVersionArn" : {
2105
- "shape" : "__string"
2106
- },
2107
- "Name" : {
2108
- "shape" : "__string"
2109
- }
2110
- }
2111
- },
2112
- "CreateGroupVersionRequest" : {
2113
- "type" : "structure",
2114
- "members" : {
2115
- "AmznClientToken" : {
2116
- "shape" : "__string",
2117
- "location" : "header",
2118
- "locationName" : "X-Amzn-Client-Token"
2119
- },
2120
- "ConnectorDefinitionVersionArn" : {
2121
- "shape" : "__string"
2122
- },
2123
- "CoreDefinitionVersionArn" : {
2124
- "shape" : "__string"
2125
- },
2126
- "DeviceDefinitionVersionArn" : {
2127
- "shape" : "__string"
2128
- },
2129
- "FunctionDefinitionVersionArn" : {
2130
- "shape" : "__string"
2131
- },
2132
- "GroupId" : {
2133
- "shape" : "__string",
2134
- "location" : "uri",
2135
- "locationName" : "GroupId"
2136
- },
2137
- "LoggerDefinitionVersionArn" : {
2138
- "shape" : "__string"
2139
- },
2140
- "ResourceDefinitionVersionArn" : {
2141
- "shape" : "__string"
2142
- },
2143
- "SubscriptionDefinitionVersionArn" : {
2144
- "shape" : "__string"
2145
- }
2146
- },
2147
- "required" : [ "GroupId" ]
2148
- },
2149
- "CreateGroupVersionResponse" : {
2150
- "type" : "structure",
2151
- "members" : {
2152
- "Arn" : {
2153
- "shape" : "__string"
2154
- },
2155
- "CreationTimestamp" : {
2156
- "shape" : "__string"
2157
- },
2158
- "Id" : {
2159
- "shape" : "__string"
2160
- },
2161
- "Version" : {
2162
- "shape" : "__string"
2163
- }
2164
- }
2165
- },
2166
- "CreateLoggerDefinitionRequest" : {
2167
- "type" : "structure",
2168
- "members" : {
2169
- "AmznClientToken" : {
2170
- "shape" : "__string",
2171
- "location" : "header",
2172
- "locationName" : "X-Amzn-Client-Token"
2173
- },
2174
- "InitialVersion" : {
2175
- "shape" : "LoggerDefinitionVersion"
2176
- },
2177
- "Name" : {
2178
- "shape" : "__string"
2179
- }
2180
- }
2181
- },
2182
- "CreateLoggerDefinitionResponse" : {
2183
- "type" : "structure",
2184
- "members" : {
2185
- "Arn" : {
2186
- "shape" : "__string"
2187
- },
2188
- "CreationTimestamp" : {
2189
- "shape" : "__string"
2190
- },
2191
- "Id" : {
2192
- "shape" : "__string"
2193
- },
2194
- "LastUpdatedTimestamp" : {
2195
- "shape" : "__string"
2196
- },
2197
- "LatestVersion" : {
2198
- "shape" : "__string"
2199
- },
2200
- "LatestVersionArn" : {
2201
- "shape" : "__string"
2202
- },
2203
- "Name" : {
2204
- "shape" : "__string"
2205
- }
2206
- }
2207
- },
2208
- "CreateLoggerDefinitionVersionRequest" : {
2209
- "type" : "structure",
2210
- "members" : {
2211
- "AmznClientToken" : {
2212
- "shape" : "__string",
2213
- "location" : "header",
2214
- "locationName" : "X-Amzn-Client-Token"
2215
- },
2216
- "LoggerDefinitionId" : {
2217
- "shape" : "__string",
2218
- "location" : "uri",
2219
- "locationName" : "LoggerDefinitionId"
2220
- },
2221
- "Loggers" : {
2222
- "shape" : "__listOfLogger"
2223
- }
2224
- },
2225
- "required" : [ "LoggerDefinitionId" ]
2226
- },
2227
- "CreateLoggerDefinitionVersionResponse" : {
2228
- "type" : "structure",
2229
- "members" : {
2230
- "Arn" : {
2231
- "shape" : "__string"
2232
- },
2233
- "CreationTimestamp" : {
2234
- "shape" : "__string"
2235
- },
2236
- "Id" : {
2237
- "shape" : "__string"
2238
- },
2239
- "Version" : {
2240
- "shape" : "__string"
2241
- }
2242
- }
2243
- },
2244
- "CreateResourceDefinitionRequest" : {
2245
- "type" : "structure",
2246
- "members" : {
2247
- "AmznClientToken" : {
2248
- "shape" : "__string",
2249
- "location" : "header",
2250
- "locationName" : "X-Amzn-Client-Token"
2251
- },
2252
- "InitialVersion" : {
2253
- "shape" : "ResourceDefinitionVersion"
2254
- },
2255
- "Name" : {
2256
- "shape" : "__string"
2257
- }
2258
- }
2259
- },
2260
- "CreateResourceDefinitionResponse" : {
2261
- "type" : "structure",
2262
- "members" : {
2263
- "Arn" : {
2264
- "shape" : "__string"
2265
- },
2266
- "CreationTimestamp" : {
2267
- "shape" : "__string"
2268
- },
2269
- "Id" : {
2270
- "shape" : "__string"
2271
- },
2272
- "LastUpdatedTimestamp" : {
2273
- "shape" : "__string"
2274
- },
2275
- "LatestVersion" : {
2276
- "shape" : "__string"
2277
- },
2278
- "LatestVersionArn" : {
2279
- "shape" : "__string"
2280
- },
2281
- "Name" : {
2282
- "shape" : "__string"
2283
- }
2284
- }
2285
- },
2286
- "CreateResourceDefinitionVersionRequest" : {
2287
- "type" : "structure",
2288
- "members" : {
2289
- "AmznClientToken" : {
2290
- "shape" : "__string",
2291
- "location" : "header",
2292
- "locationName" : "X-Amzn-Client-Token"
2293
- },
2294
- "ResourceDefinitionId" : {
2295
- "shape" : "__string",
2296
- "location" : "uri",
2297
- "locationName" : "ResourceDefinitionId"
2298
- },
2299
- "Resources" : {
2300
- "shape" : "__listOfResource"
2301
- }
2302
- },
2303
- "required" : [ "ResourceDefinitionId" ]
2304
- },
2305
- "CreateResourceDefinitionVersionResponse" : {
2306
- "type" : "structure",
2307
- "members" : {
2308
- "Arn" : {
2309
- "shape" : "__string"
2310
- },
2311
- "CreationTimestamp" : {
2312
- "shape" : "__string"
2313
- },
2314
- "Id" : {
2315
- "shape" : "__string"
2316
- },
2317
- "Version" : {
2318
- "shape" : "__string"
2319
- }
2320
- }
2321
- },
2322
- "CreateSoftwareUpdateJobRequest" : {
2323
- "type" : "structure",
2324
- "members" : {
2325
- "AmznClientToken" : {
2326
- "shape" : "__string",
2327
- "location" : "header",
2328
- "locationName" : "X-Amzn-Client-Token"
2329
- },
2330
- "S3UrlSignerRole" : {
2331
- "shape" : "S3UrlSignerRole"
2332
- },
2333
- "SoftwareToUpdate" : {
2334
- "shape" : "SoftwareToUpdate"
2335
- },
2336
- "UpdateAgentLogLevel" : {
2337
- "shape" : "UpdateAgentLogLevel"
2338
- },
2339
- "UpdateTargets" : {
2340
- "shape" : "UpdateTargets"
2341
- },
2342
- "UpdateTargetsArchitecture" : {
2343
- "shape" : "UpdateTargetsArchitecture"
2344
- },
2345
- "UpdateTargetsOperatingSystem" : {
2346
- "shape" : "UpdateTargetsOperatingSystem"
2347
- }
2348
- }
2349
- },
2350
- "CreateSoftwareUpdateJobResponse" : {
2351
- "type" : "structure",
2352
- "members" : {
2353
- "IotJobArn" : {
2354
- "shape" : "__string"
2355
- },
2356
- "IotJobId" : {
2357
- "shape" : "__string"
2358
- }
2359
- }
2360
- },
2361
- "CreateSubscriptionDefinitionRequest" : {
2362
- "type" : "structure",
2363
- "members" : {
2364
- "AmznClientToken" : {
2365
- "shape" : "__string",
2366
- "location" : "header",
2367
- "locationName" : "X-Amzn-Client-Token"
2368
- },
2369
- "InitialVersion" : {
2370
- "shape" : "SubscriptionDefinitionVersion"
2371
- },
2372
- "Name" : {
2373
- "shape" : "__string"
2374
- }
2375
- }
2376
- },
2377
- "CreateSubscriptionDefinitionResponse" : {
2378
- "type" : "structure",
2379
- "members" : {
2380
- "Arn" : {
2381
- "shape" : "__string"
2382
- },
2383
- "CreationTimestamp" : {
2384
- "shape" : "__string"
2385
- },
2386
- "Id" : {
2387
- "shape" : "__string"
2388
- },
2389
- "LastUpdatedTimestamp" : {
2390
- "shape" : "__string"
2391
- },
2392
- "LatestVersion" : {
2393
- "shape" : "__string"
2394
- },
2395
- "LatestVersionArn" : {
2396
- "shape" : "__string"
2397
- },
2398
- "Name" : {
2399
- "shape" : "__string"
2400
- }
2401
- }
2402
- },
2403
- "CreateSubscriptionDefinitionVersionRequest" : {
2404
- "type" : "structure",
2405
- "members" : {
2406
- "AmznClientToken" : {
2407
- "shape" : "__string",
2408
- "location" : "header",
2409
- "locationName" : "X-Amzn-Client-Token"
2410
- },
2411
- "SubscriptionDefinitionId" : {
2412
- "shape" : "__string",
2413
- "location" : "uri",
2414
- "locationName" : "SubscriptionDefinitionId"
2415
- },
2416
- "Subscriptions" : {
2417
- "shape" : "__listOfSubscription"
2418
- }
2419
- },
2420
- "required" : [ "SubscriptionDefinitionId" ]
2421
- },
2422
- "CreateSubscriptionDefinitionVersionResponse" : {
2423
- "type" : "structure",
2424
- "members" : {
2425
- "Arn" : {
2426
- "shape" : "__string"
2427
- },
2428
- "CreationTimestamp" : {
2429
- "shape" : "__string"
2430
- },
2431
- "Id" : {
2432
- "shape" : "__string"
2433
- },
2434
- "Version" : {
2435
- "shape" : "__string"
2436
- }
2437
- }
2438
- },
2439
- "DefinitionInformation" : {
2440
- "type" : "structure",
2441
- "members" : {
2442
- "Arn" : {
2443
- "shape" : "__string"
2444
- },
2445
- "CreationTimestamp" : {
2446
- "shape" : "__string"
2447
- },
2448
- "Id" : {
2449
- "shape" : "__string"
2450
- },
2451
- "LastUpdatedTimestamp" : {
2452
- "shape" : "__string"
2453
- },
2454
- "LatestVersion" : {
2455
- "shape" : "__string"
2456
- },
2457
- "LatestVersionArn" : {
2458
- "shape" : "__string"
2459
- },
2460
- "Name" : {
2461
- "shape" : "__string"
2462
- }
2463
- }
2464
- },
2465
- "DeleteConnectorDefinitionRequest" : {
2466
- "type" : "structure",
2467
- "members" : {
2468
- "ConnectorDefinitionId" : {
2469
- "shape" : "__string",
2470
- "location" : "uri",
2471
- "locationName" : "ConnectorDefinitionId"
2472
- }
2473
- },
2474
- "required" : [ "ConnectorDefinitionId" ]
2475
- },
2476
- "DeleteConnectorDefinitionResponse" : {
2477
- "type" : "structure",
2478
- "members" : { }
2479
- },
2480
- "DeleteCoreDefinitionRequest" : {
2481
- "type" : "structure",
2482
- "members" : {
2483
- "CoreDefinitionId" : {
2484
- "shape" : "__string",
2485
- "location" : "uri",
2486
- "locationName" : "CoreDefinitionId"
2487
- }
2488
- },
2489
- "required" : [ "CoreDefinitionId" ]
2490
- },
2491
- "DeleteCoreDefinitionResponse" : {
2492
- "type" : "structure",
2493
- "members" : { }
2494
- },
2495
- "DeleteDeviceDefinitionRequest" : {
2496
- "type" : "structure",
2497
- "members" : {
2498
- "DeviceDefinitionId" : {
2499
- "shape" : "__string",
2500
- "location" : "uri",
2501
- "locationName" : "DeviceDefinitionId"
2502
- }
2503
- },
2504
- "required" : [ "DeviceDefinitionId" ]
2505
- },
2506
- "DeleteDeviceDefinitionResponse" : {
2507
- "type" : "structure",
2508
- "members" : { }
2509
- },
2510
- "DeleteFunctionDefinitionRequest" : {
2511
- "type" : "structure",
2512
- "members" : {
2513
- "FunctionDefinitionId" : {
2514
- "shape" : "__string",
2515
- "location" : "uri",
2516
- "locationName" : "FunctionDefinitionId"
2517
- }
2518
- },
2519
- "required" : [ "FunctionDefinitionId" ]
2520
- },
2521
- "DeleteFunctionDefinitionResponse" : {
2522
- "type" : "structure",
2523
- "members" : { }
2524
- },
2525
- "DeleteGroupRequest" : {
2526
- "type" : "structure",
2527
- "members" : {
2528
- "GroupId" : {
2529
- "shape" : "__string",
2530
- "location" : "uri",
2531
- "locationName" : "GroupId"
2532
- }
2533
- },
2534
- "required" : [ "GroupId" ]
2535
- },
2536
- "DeleteGroupResponse" : {
2537
- "type" : "structure",
2538
- "members" : { }
2539
- },
2540
- "DeleteLoggerDefinitionRequest" : {
2541
- "type" : "structure",
2542
- "members" : {
2543
- "LoggerDefinitionId" : {
2544
- "shape" : "__string",
2545
- "location" : "uri",
2546
- "locationName" : "LoggerDefinitionId"
2547
- }
2548
- },
2549
- "required" : [ "LoggerDefinitionId" ]
2550
- },
2551
- "DeleteLoggerDefinitionResponse" : {
2552
- "type" : "structure",
2553
- "members" : { }
2554
- },
2555
- "DeleteResourceDefinitionRequest" : {
2556
- "type" : "structure",
2557
- "members" : {
2558
- "ResourceDefinitionId" : {
2559
- "shape" : "__string",
2560
- "location" : "uri",
2561
- "locationName" : "ResourceDefinitionId"
2562
- }
2563
- },
2564
- "required" : [ "ResourceDefinitionId" ]
2565
- },
2566
- "DeleteResourceDefinitionResponse" : {
2567
- "type" : "structure",
2568
- "members" : { }
2569
- },
2570
- "DeleteSubscriptionDefinitionRequest" : {
2571
- "type" : "structure",
2572
- "members" : {
2573
- "SubscriptionDefinitionId" : {
2574
- "shape" : "__string",
2575
- "location" : "uri",
2576
- "locationName" : "SubscriptionDefinitionId"
2577
- }
2578
- },
2579
- "required" : [ "SubscriptionDefinitionId" ]
2580
- },
2581
- "DeleteSubscriptionDefinitionResponse" : {
2582
- "type" : "structure",
2583
- "members" : { }
2584
- },
2585
- "Deployment" : {
2586
- "type" : "structure",
2587
- "members" : {
2588
- "CreatedAt" : {
2589
- "shape" : "__string"
2590
- },
2591
- "DeploymentArn" : {
2592
- "shape" : "__string"
2593
- },
2594
- "DeploymentId" : {
2595
- "shape" : "__string"
2596
- },
2597
- "DeploymentType" : {
2598
- "shape" : "DeploymentType"
2599
- },
2600
- "GroupArn" : {
2601
- "shape" : "__string"
2602
- }
2603
- }
2604
- },
2605
- "DeploymentType" : {
2606
- "type" : "string",
2607
- "enum" : [ "NewDeployment", "Redeployment", "ResetDeployment", "ForceResetDeployment" ]
2608
- },
2609
- "Deployments" : {
2610
- "type" : "list",
2611
- "member" : {
2612
- "shape" : "Deployment"
2613
- }
2614
- },
2615
- "Device" : {
2616
- "type" : "structure",
2617
- "members" : {
2618
- "CertificateArn" : {
2619
- "shape" : "__string"
2620
- },
2621
- "Id" : {
2622
- "shape" : "__string"
2623
- },
2624
- "SyncShadow" : {
2625
- "shape" : "__boolean"
2626
- },
2627
- "ThingArn" : {
2628
- "shape" : "__string"
2629
- }
2630
- },
2631
- "required" : [ ]
2632
- },
2633
- "DeviceDefinitionVersion" : {
2634
- "type" : "structure",
2635
- "members" : {
2636
- "Devices" : {
2637
- "shape" : "__listOfDevice"
2638
- }
2639
- }
2640
- },
2641
- "DisassociateRoleFromGroupRequest" : {
2642
- "type" : "structure",
2643
- "members" : {
2644
- "GroupId" : {
2645
- "shape" : "__string",
2646
- "location" : "uri",
2647
- "locationName" : "GroupId"
2648
- }
2649
- },
2650
- "required" : [ "GroupId" ]
2651
- },
2652
- "DisassociateRoleFromGroupResponse" : {
2653
- "type" : "structure",
2654
- "members" : {
2655
- "DisassociatedAt" : {
2656
- "shape" : "__string"
2657
- }
2658
- }
2659
- },
2660
- "DisassociateServiceRoleFromAccountRequest" : {
2661
- "type" : "structure",
2662
- "members" : { }
2663
- },
2664
- "DisassociateServiceRoleFromAccountResponse" : {
2665
- "type" : "structure",
2666
- "members" : {
2667
- "DisassociatedAt" : {
2668
- "shape" : "__string"
2669
- }
2670
- }
2671
- },
2672
- "Empty" : {
2673
- "type" : "structure",
2674
- "members" : { }
2675
- },
2676
- "EncodingType" : {
2677
- "type" : "string",
2678
- "enum" : [ "binary", "json" ]
2679
- },
2680
- "ErrorDetail" : {
2681
- "type" : "structure",
2682
- "members" : {
2683
- "DetailedErrorCode" : {
2684
- "shape" : "__string"
2685
- },
2686
- "DetailedErrorMessage" : {
2687
- "shape" : "__string"
2688
- }
2689
- }
2690
- },
2691
- "ErrorDetails" : {
2692
- "type" : "list",
2693
- "member" : {
2694
- "shape" : "ErrorDetail"
2695
- }
2696
- },
2697
- "Function" : {
2698
- "type" : "structure",
2699
- "members" : {
2700
- "FunctionArn" : {
2701
- "shape" : "__string"
2702
- },
2703
- "FunctionConfiguration" : {
2704
- "shape" : "FunctionConfiguration"
2705
- },
2706
- "Id" : {
2707
- "shape" : "__string"
2708
- }
2709
- },
2710
- "required" : [ ]
2711
- },
2712
- "FunctionConfiguration" : {
2713
- "type" : "structure",
2714
- "members" : {
2715
- "EncodingType" : {
2716
- "shape" : "EncodingType"
2717
- },
2718
- "Environment" : {
2719
- "shape" : "FunctionConfigurationEnvironment"
2720
- },
2721
- "ExecArgs" : {
2722
- "shape" : "__string"
2723
- },
2724
- "Executable" : {
2725
- "shape" : "__string"
2726
- },
2727
- "MemorySize" : {
2728
- "shape" : "__integer"
2729
- },
2730
- "Pinned" : {
2731
- "shape" : "__boolean"
2732
- },
2733
- "Timeout" : {
2734
- "shape" : "__integer"
2735
- }
2736
- }
2737
- },
2738
- "FunctionConfigurationEnvironment" : {
2739
- "type" : "structure",
2740
- "members" : {
2741
- "AccessSysfs" : {
2742
- "shape" : "__boolean"
2743
- },
2744
- "Execution" : {
2745
- "shape" : "FunctionExecutionConfig"
2746
- },
2747
- "ResourceAccessPolicies" : {
2748
- "shape" : "__listOfResourceAccessPolicy"
2749
- },
2750
- "Variables" : {
2751
- "shape" : "__mapOf__string"
2752
- }
2753
- }
2754
- },
2755
- "FunctionDefaultConfig" : {
2756
- "type" : "structure",
2757
- "members" : {
2758
- "Execution" : {
2759
- "shape" : "FunctionDefaultExecutionConfig"
2760
- }
2761
- }
2762
- },
2763
- "FunctionDefaultExecutionConfig" : {
2764
- "type" : "structure",
2765
- "members" : {
2766
- "IsolationMode" : {
2767
- "shape" : "FunctionIsolationMode"
2768
- }
2769
- }
2770
- },
2771
- "FunctionDefinitionVersion" : {
2772
- "type" : "structure",
2773
- "members" : {
2774
- "DefaultConfig" : {
2775
- "shape" : "FunctionDefaultConfig"
2776
- },
2777
- "Functions" : {
2778
- "shape" : "__listOfFunction"
2779
- }
2780
- }
2781
- },
2782
- "FunctionExecutionConfig" : {
2783
- "type" : "structure",
2784
- "members" : {
2785
- "IsolationMode" : {
2786
- "shape" : "FunctionIsolationMode"
2787
- },
2788
- "RunAs" : {
2789
- "shape" : "FunctionRunAsConfig"
2790
- }
2791
- }
2792
- },
2793
- "FunctionIsolationMode" : {
2794
- "type" : "string",
2795
- "enum" : [ "GreengrassContainer", "NoContainer" ]
2796
- },
2797
- "FunctionRunAsConfig" : {
2798
- "type" : "structure",
2799
- "members" : {
2800
- "Gid" : {
2801
- "shape" : "__integer"
2802
- },
2803
- "Uid" : {
2804
- "shape" : "__integer"
2805
- }
2806
- }
2807
- },
2808
- "GeneralError" : {
2809
- "type" : "structure",
2810
- "members" : {
2811
- "ErrorDetails" : {
2812
- "shape" : "ErrorDetails"
2813
- },
2814
- "Message" : {
2815
- "shape" : "__string"
2816
- }
2817
- }
2818
- },
2819
- "GetAssociatedRoleRequest" : {
2820
- "type" : "structure",
2821
- "members" : {
2822
- "GroupId" : {
2823
- "shape" : "__string",
2824
- "location" : "uri",
2825
- "locationName" : "GroupId"
2826
- }
2827
- },
2828
- "required" : [ "GroupId" ]
2829
- },
2830
- "GetAssociatedRoleResponse" : {
2831
- "type" : "structure",
2832
- "members" : {
2833
- "AssociatedAt" : {
2834
- "shape" : "__string"
2835
- },
2836
- "RoleArn" : {
2837
- "shape" : "__string"
2838
- }
2839
- }
2840
- },
2841
- "GetBulkDeploymentStatusRequest" : {
2842
- "type" : "structure",
2843
- "members" : {
2844
- "BulkDeploymentId" : {
2845
- "shape" : "__string",
2846
- "location" : "uri",
2847
- "locationName" : "BulkDeploymentId"
2848
- }
2849
- },
2850
- "required" : [ "BulkDeploymentId" ]
2851
- },
2852
- "GetBulkDeploymentStatusResponse" : {
2853
- "type" : "structure",
2854
- "members" : {
2855
- "BulkDeploymentMetrics" : {
2856
- "shape" : "BulkDeploymentMetrics"
2857
- },
2858
- "BulkDeploymentStatus" : {
2859
- "shape" : "BulkDeploymentStatus"
2860
- },
2861
- "CreatedAt" : {
2862
- "shape" : "__string"
2863
- },
2864
- "ErrorDetails" : {
2865
- "shape" : "ErrorDetails"
2866
- },
2867
- "ErrorMessage" : {
2868
- "shape" : "__string"
2869
- }
2870
- }
2871
- },
2872
- "GetConnectivityInfoRequest" : {
2873
- "type" : "structure",
2874
- "members" : {
2875
- "ThingName" : {
2876
- "shape" : "__string",
2877
- "location" : "uri",
2878
- "locationName" : "ThingName"
2879
- }
2880
- },
2881
- "required" : [ "ThingName" ]
2882
- },
2883
- "GetConnectivityInfoResponse" : {
2884
- "type" : "structure",
2885
- "members" : {
2886
- "ConnectivityInfo" : {
2887
- "shape" : "__listOfConnectivityInfo"
2888
- },
2889
- "Message" : {
2890
- "shape" : "__string",
2891
- "locationName" : "message"
2892
- }
2893
- }
2894
- },
2895
- "GetConnectorDefinitionRequest" : {
2896
- "type" : "structure",
2897
- "members" : {
2898
- "ConnectorDefinitionId" : {
2899
- "shape" : "__string",
2900
- "location" : "uri",
2901
- "locationName" : "ConnectorDefinitionId"
2902
- }
2903
- },
2904
- "required" : [ "ConnectorDefinitionId" ]
2905
- },
2906
- "GetConnectorDefinitionResponse" : {
2907
- "type" : "structure",
2908
- "members" : {
2909
- "Arn" : {
2910
- "shape" : "__string"
2911
- },
2912
- "CreationTimestamp" : {
2913
- "shape" : "__string"
2914
- },
2915
- "Id" : {
2916
- "shape" : "__string"
2917
- },
2918
- "LastUpdatedTimestamp" : {
2919
- "shape" : "__string"
2920
- },
2921
- "LatestVersion" : {
2922
- "shape" : "__string"
2923
- },
2924
- "LatestVersionArn" : {
2925
- "shape" : "__string"
2926
- },
2927
- "Name" : {
2928
- "shape" : "__string"
2929
- }
2930
- }
2931
- },
2932
- "GetConnectorDefinitionVersionRequest" : {
2933
- "type" : "structure",
2934
- "members" : {
2935
- "ConnectorDefinitionId" : {
2936
- "shape" : "__string",
2937
- "location" : "uri",
2938
- "locationName" : "ConnectorDefinitionId"
2939
- },
2940
- "ConnectorDefinitionVersionId" : {
2941
- "shape" : "__string",
2942
- "location" : "uri",
2943
- "locationName" : "ConnectorDefinitionVersionId"
2944
- },
2945
- "NextToken" : {
2946
- "shape" : "__string",
2947
- "location" : "querystring",
2948
- "locationName" : "NextToken"
2949
- }
2950
- },
2951
- "required" : [ "ConnectorDefinitionId", "ConnectorDefinitionVersionId" ]
2952
- },
2953
- "GetConnectorDefinitionVersionResponse" : {
2954
- "type" : "structure",
2955
- "members" : {
2956
- "Arn" : {
2957
- "shape" : "__string"
2958
- },
2959
- "CreationTimestamp" : {
2960
- "shape" : "__string"
2961
- },
2962
- "Definition" : {
2963
- "shape" : "ConnectorDefinitionVersion"
2964
- },
2965
- "Id" : {
2966
- "shape" : "__string"
2967
- },
2968
- "NextToken" : {
2969
- "shape" : "__string"
2970
- },
2971
- "Version" : {
2972
- "shape" : "__string"
2973
- }
2974
- }
2975
- },
2976
- "GetCoreDefinitionRequest" : {
2977
- "type" : "structure",
2978
- "members" : {
2979
- "CoreDefinitionId" : {
2980
- "shape" : "__string",
2981
- "location" : "uri",
2982
- "locationName" : "CoreDefinitionId"
2983
- }
2984
- },
2985
- "required" : [ "CoreDefinitionId" ]
2986
- },
2987
- "GetCoreDefinitionResponse" : {
2988
- "type" : "structure",
2989
- "members" : {
2990
- "Arn" : {
2991
- "shape" : "__string"
2992
- },
2993
- "CreationTimestamp" : {
2994
- "shape" : "__string"
2995
- },
2996
- "Id" : {
2997
- "shape" : "__string"
2998
- },
2999
- "LastUpdatedTimestamp" : {
3000
- "shape" : "__string"
3001
- },
3002
- "LatestVersion" : {
3003
- "shape" : "__string"
3004
- },
3005
- "LatestVersionArn" : {
3006
- "shape" : "__string"
3007
- },
3008
- "Name" : {
3009
- "shape" : "__string"
3010
- }
3011
- }
3012
- },
3013
- "GetCoreDefinitionVersionRequest" : {
3014
- "type" : "structure",
3015
- "members" : {
3016
- "CoreDefinitionId" : {
3017
- "shape" : "__string",
3018
- "location" : "uri",
3019
- "locationName" : "CoreDefinitionId"
3020
- },
3021
- "CoreDefinitionVersionId" : {
3022
- "shape" : "__string",
3023
- "location" : "uri",
3024
- "locationName" : "CoreDefinitionVersionId"
3025
- }
3026
- },
3027
- "required" : [ "CoreDefinitionId", "CoreDefinitionVersionId" ]
3028
- },
3029
- "GetCoreDefinitionVersionResponse" : {
3030
- "type" : "structure",
3031
- "members" : {
3032
- "Arn" : {
3033
- "shape" : "__string"
3034
- },
3035
- "CreationTimestamp" : {
3036
- "shape" : "__string"
3037
- },
3038
- "Definition" : {
3039
- "shape" : "CoreDefinitionVersion"
3040
- },
3041
- "Id" : {
3042
- "shape" : "__string"
3043
- },
3044
- "NextToken" : {
3045
- "shape" : "__string"
3046
- },
3047
- "Version" : {
3048
- "shape" : "__string"
3049
- }
3050
- }
3051
- },
3052
- "GetDeploymentStatusRequest" : {
3053
- "type" : "structure",
3054
- "members" : {
3055
- "DeploymentId" : {
3056
- "shape" : "__string",
3057
- "location" : "uri",
3058
- "locationName" : "DeploymentId"
3059
- },
3060
- "GroupId" : {
3061
- "shape" : "__string",
3062
- "location" : "uri",
3063
- "locationName" : "GroupId"
3064
- }
3065
- },
3066
- "required" : [ "GroupId", "DeploymentId" ]
3067
- },
3068
- "GetDeploymentStatusResponse" : {
3069
- "type" : "structure",
3070
- "members" : {
3071
- "DeploymentStatus" : {
3072
- "shape" : "__string"
3073
- },
3074
- "DeploymentType" : {
3075
- "shape" : "DeploymentType"
3076
- },
3077
- "ErrorDetails" : {
3078
- "shape" : "ErrorDetails"
3079
- },
3080
- "ErrorMessage" : {
3081
- "shape" : "__string"
3082
- },
3083
- "UpdatedAt" : {
3084
- "shape" : "__string"
3085
- }
3086
- }
3087
- },
3088
- "GetDeviceDefinitionRequest" : {
3089
- "type" : "structure",
3090
- "members" : {
3091
- "DeviceDefinitionId" : {
3092
- "shape" : "__string",
3093
- "location" : "uri",
3094
- "locationName" : "DeviceDefinitionId"
3095
- }
3096
- },
3097
- "required" : [ "DeviceDefinitionId" ]
3098
- },
3099
- "GetDeviceDefinitionResponse" : {
3100
- "type" : "structure",
3101
- "members" : {
3102
- "Arn" : {
3103
- "shape" : "__string"
3104
- },
3105
- "CreationTimestamp" : {
3106
- "shape" : "__string"
3107
- },
3108
- "Id" : {
3109
- "shape" : "__string"
3110
- },
3111
- "LastUpdatedTimestamp" : {
3112
- "shape" : "__string"
3113
- },
3114
- "LatestVersion" : {
3115
- "shape" : "__string"
3116
- },
3117
- "LatestVersionArn" : {
3118
- "shape" : "__string"
3119
- },
3120
- "Name" : {
3121
- "shape" : "__string"
3122
- }
3123
- }
3124
- },
3125
- "GetDeviceDefinitionVersionRequest" : {
3126
- "type" : "structure",
3127
- "members" : {
3128
- "DeviceDefinitionId" : {
3129
- "shape" : "__string",
3130
- "location" : "uri",
3131
- "locationName" : "DeviceDefinitionId"
3132
- },
3133
- "DeviceDefinitionVersionId" : {
3134
- "shape" : "__string",
3135
- "location" : "uri",
3136
- "locationName" : "DeviceDefinitionVersionId"
3137
- },
3138
- "NextToken" : {
3139
- "shape" : "__string",
3140
- "location" : "querystring",
3141
- "locationName" : "NextToken"
3142
- }
3143
- },
3144
- "required" : [ "DeviceDefinitionVersionId", "DeviceDefinitionId" ]
3145
- },
3146
- "GetDeviceDefinitionVersionResponse" : {
3147
- "type" : "structure",
3148
- "members" : {
3149
- "Arn" : {
3150
- "shape" : "__string"
3151
- },
3152
- "CreationTimestamp" : {
3153
- "shape" : "__string"
3154
- },
3155
- "Definition" : {
3156
- "shape" : "DeviceDefinitionVersion"
3157
- },
3158
- "Id" : {
3159
- "shape" : "__string"
3160
- },
3161
- "NextToken" : {
3162
- "shape" : "__string"
3163
- },
3164
- "Version" : {
3165
- "shape" : "__string"
3166
- }
3167
- }
3168
- },
3169
- "GetFunctionDefinitionRequest" : {
3170
- "type" : "structure",
3171
- "members" : {
3172
- "FunctionDefinitionId" : {
3173
- "shape" : "__string",
3174
- "location" : "uri",
3175
- "locationName" : "FunctionDefinitionId"
3176
- }
3177
- },
3178
- "required" : [ "FunctionDefinitionId" ]
3179
- },
3180
- "GetFunctionDefinitionResponse" : {
3181
- "type" : "structure",
3182
- "members" : {
3183
- "Arn" : {
3184
- "shape" : "__string"
3185
- },
3186
- "CreationTimestamp" : {
3187
- "shape" : "__string"
3188
- },
3189
- "Id" : {
3190
- "shape" : "__string"
3191
- },
3192
- "LastUpdatedTimestamp" : {
3193
- "shape" : "__string"
3194
- },
3195
- "LatestVersion" : {
3196
- "shape" : "__string"
3197
- },
3198
- "LatestVersionArn" : {
3199
- "shape" : "__string"
3200
- },
3201
- "Name" : {
3202
- "shape" : "__string"
3203
- }
3204
- }
3205
- },
3206
- "GetFunctionDefinitionVersionRequest" : {
3207
- "type" : "structure",
3208
- "members" : {
3209
- "FunctionDefinitionId" : {
3210
- "shape" : "__string",
3211
- "location" : "uri",
3212
- "locationName" : "FunctionDefinitionId"
3213
- },
3214
- "FunctionDefinitionVersionId" : {
3215
- "shape" : "__string",
3216
- "location" : "uri",
3217
- "locationName" : "FunctionDefinitionVersionId"
3218
- },
3219
- "NextToken" : {
3220
- "shape" : "__string",
3221
- "location" : "querystring",
3222
- "locationName" : "NextToken"
3223
- }
3224
- },
3225
- "required" : [ "FunctionDefinitionId", "FunctionDefinitionVersionId" ]
3226
- },
3227
- "GetFunctionDefinitionVersionResponse" : {
3228
- "type" : "structure",
3229
- "members" : {
3230
- "Arn" : {
3231
- "shape" : "__string"
3232
- },
3233
- "CreationTimestamp" : {
3234
- "shape" : "__string"
3235
- },
3236
- "Definition" : {
3237
- "shape" : "FunctionDefinitionVersion"
3238
- },
3239
- "Id" : {
3240
- "shape" : "__string"
3241
- },
3242
- "NextToken" : {
3243
- "shape" : "__string"
3244
- },
3245
- "Version" : {
3246
- "shape" : "__string"
3247
- }
3248
- }
3249
- },
3250
- "GetGroupCertificateAuthorityRequest" : {
3251
- "type" : "structure",
3252
- "members" : {
3253
- "CertificateAuthorityId" : {
3254
- "shape" : "__string",
3255
- "location" : "uri",
3256
- "locationName" : "CertificateAuthorityId"
3257
- },
3258
- "GroupId" : {
3259
- "shape" : "__string",
3260
- "location" : "uri",
3261
- "locationName" : "GroupId"
3262
- }
3263
- },
3264
- "required" : [ "CertificateAuthorityId", "GroupId" ]
3265
- },
3266
- "GetGroupCertificateAuthorityResponse" : {
3267
- "type" : "structure",
3268
- "members" : {
3269
- "GroupCertificateAuthorityArn" : {
3270
- "shape" : "__string"
3271
- },
3272
- "GroupCertificateAuthorityId" : {
3273
- "shape" : "__string"
3274
- },
3275
- "PemEncodedCertificate" : {
3276
- "shape" : "__string"
3277
- }
3278
- }
3279
- },
3280
- "GetGroupCertificateConfigurationRequest" : {
3281
- "type" : "structure",
3282
- "members" : {
3283
- "GroupId" : {
3284
- "shape" : "__string",
3285
- "location" : "uri",
3286
- "locationName" : "GroupId"
3287
- }
3288
- },
3289
- "required" : [ "GroupId" ]
3290
- },
3291
- "GetGroupCertificateConfigurationResponse" : {
3292
- "type" : "structure",
3293
- "members" : {
3294
- "CertificateAuthorityExpiryInMilliseconds" : {
3295
- "shape" : "__string"
3296
- },
3297
- "CertificateExpiryInMilliseconds" : {
3298
- "shape" : "__string"
3299
- },
3300
- "GroupId" : {
3301
- "shape" : "__string"
3302
- }
3303
- }
3304
- },
3305
- "GetGroupRequest" : {
3306
- "type" : "structure",
3307
- "members" : {
3308
- "GroupId" : {
3309
- "shape" : "__string",
3310
- "location" : "uri",
3311
- "locationName" : "GroupId"
3312
- }
3313
- },
3314
- "required" : [ "GroupId" ]
3315
- },
3316
- "GetGroupResponse" : {
3317
- "type" : "structure",
3318
- "members" : {
3319
- "Arn" : {
3320
- "shape" : "__string"
3321
- },
3322
- "CreationTimestamp" : {
3323
- "shape" : "__string"
3324
- },
3325
- "Id" : {
3326
- "shape" : "__string"
3327
- },
3328
- "LastUpdatedTimestamp" : {
3329
- "shape" : "__string"
3330
- },
3331
- "LatestVersion" : {
3332
- "shape" : "__string"
3333
- },
3334
- "LatestVersionArn" : {
3335
- "shape" : "__string"
3336
- },
3337
- "Name" : {
3338
- "shape" : "__string"
3339
- }
3340
- }
3341
- },
3342
- "GetGroupVersionRequest" : {
3343
- "type" : "structure",
3344
- "members" : {
3345
- "GroupId" : {
3346
- "shape" : "__string",
3347
- "location" : "uri",
3348
- "locationName" : "GroupId"
3349
- },
3350
- "GroupVersionId" : {
3351
- "shape" : "__string",
3352
- "location" : "uri",
3353
- "locationName" : "GroupVersionId"
3354
- }
3355
- },
3356
- "required" : [ "GroupVersionId", "GroupId" ]
3357
- },
3358
- "GetGroupVersionResponse" : {
3359
- "type" : "structure",
3360
- "members" : {
3361
- "Arn" : {
3362
- "shape" : "__string"
3363
- },
3364
- "CreationTimestamp" : {
3365
- "shape" : "__string"
3366
- },
3367
- "Definition" : {
3368
- "shape" : "GroupVersion"
3369
- },
3370
- "Id" : {
3371
- "shape" : "__string"
3372
- },
3373
- "Version" : {
3374
- "shape" : "__string"
3375
- }
3376
- }
3377
- },
3378
- "GetLoggerDefinitionRequest" : {
3379
- "type" : "structure",
3380
- "members" : {
3381
- "LoggerDefinitionId" : {
3382
- "shape" : "__string",
3383
- "location" : "uri",
3384
- "locationName" : "LoggerDefinitionId"
3385
- }
3386
- },
3387
- "required" : [ "LoggerDefinitionId" ]
3388
- },
3389
- "GetLoggerDefinitionResponse" : {
3390
- "type" : "structure",
3391
- "members" : {
3392
- "Arn" : {
3393
- "shape" : "__string"
3394
- },
3395
- "CreationTimestamp" : {
3396
- "shape" : "__string"
3397
- },
3398
- "Id" : {
3399
- "shape" : "__string"
3400
- },
3401
- "LastUpdatedTimestamp" : {
3402
- "shape" : "__string"
3403
- },
3404
- "LatestVersion" : {
3405
- "shape" : "__string"
3406
- },
3407
- "LatestVersionArn" : {
3408
- "shape" : "__string"
3409
- },
3410
- "Name" : {
3411
- "shape" : "__string"
3412
- }
3413
- }
3414
- },
3415
- "GetLoggerDefinitionVersionRequest" : {
3416
- "type" : "structure",
3417
- "members" : {
3418
- "LoggerDefinitionId" : {
3419
- "shape" : "__string",
3420
- "location" : "uri",
3421
- "locationName" : "LoggerDefinitionId"
3422
- },
3423
- "LoggerDefinitionVersionId" : {
3424
- "shape" : "__string",
3425
- "location" : "uri",
3426
- "locationName" : "LoggerDefinitionVersionId"
3427
- },
3428
- "NextToken" : {
3429
- "shape" : "__string",
3430
- "location" : "querystring",
3431
- "locationName" : "NextToken"
3432
- }
3433
- },
3434
- "required" : [ "LoggerDefinitionVersionId", "LoggerDefinitionId" ]
3435
- },
3436
- "GetLoggerDefinitionVersionResponse" : {
3437
- "type" : "structure",
3438
- "members" : {
3439
- "Arn" : {
3440
- "shape" : "__string"
3441
- },
3442
- "CreationTimestamp" : {
3443
- "shape" : "__string"
3444
- },
3445
- "Definition" : {
3446
- "shape" : "LoggerDefinitionVersion"
3447
- },
3448
- "Id" : {
3449
- "shape" : "__string"
3450
- },
3451
- "Version" : {
3452
- "shape" : "__string"
3453
- }
3454
- }
3455
- },
3456
- "GetResourceDefinitionRequest" : {
3457
- "type" : "structure",
3458
- "members" : {
3459
- "ResourceDefinitionId" : {
3460
- "shape" : "__string",
3461
- "location" : "uri",
3462
- "locationName" : "ResourceDefinitionId"
3463
- }
3464
- },
3465
- "required" : [ "ResourceDefinitionId" ]
3466
- },
3467
- "GetResourceDefinitionResponse" : {
3468
- "type" : "structure",
3469
- "members" : {
3470
- "Arn" : {
3471
- "shape" : "__string"
3472
- },
3473
- "CreationTimestamp" : {
3474
- "shape" : "__string"
3475
- },
3476
- "Id" : {
3477
- "shape" : "__string"
3478
- },
3479
- "LastUpdatedTimestamp" : {
3480
- "shape" : "__string"
3481
- },
3482
- "LatestVersion" : {
3483
- "shape" : "__string"
3484
- },
3485
- "LatestVersionArn" : {
3486
- "shape" : "__string"
3487
- },
3488
- "Name" : {
3489
- "shape" : "__string"
3490
- }
3491
- }
3492
- },
3493
- "GetResourceDefinitionVersionRequest" : {
3494
- "type" : "structure",
3495
- "members" : {
3496
- "ResourceDefinitionId" : {
3497
- "shape" : "__string",
3498
- "location" : "uri",
3499
- "locationName" : "ResourceDefinitionId"
3500
- },
3501
- "ResourceDefinitionVersionId" : {
3502
- "shape" : "__string",
3503
- "location" : "uri",
3504
- "locationName" : "ResourceDefinitionVersionId"
3505
- }
3506
- },
3507
- "required" : [ "ResourceDefinitionVersionId", "ResourceDefinitionId" ]
3508
- },
3509
- "GetResourceDefinitionVersionResponse" : {
3510
- "type" : "structure",
3511
- "members" : {
3512
- "Arn" : {
3513
- "shape" : "__string"
3514
- },
3515
- "CreationTimestamp" : {
3516
- "shape" : "__string"
3517
- },
3518
- "Definition" : {
3519
- "shape" : "ResourceDefinitionVersion"
3520
- },
3521
- "Id" : {
3522
- "shape" : "__string"
3523
- },
3524
- "Version" : {
3525
- "shape" : "__string"
3526
- }
3527
- }
3528
- },
3529
- "GetServiceRoleForAccountRequest" : {
3530
- "type" : "structure",
3531
- "members" : { }
3532
- },
3533
- "GetServiceRoleForAccountResponse" : {
3534
- "type" : "structure",
3535
- "members" : {
3536
- "AssociatedAt" : {
3537
- "shape" : "__string"
3538
- },
3539
- "RoleArn" : {
3540
- "shape" : "__string"
3541
- }
3542
- }
3543
- },
3544
- "GetSubscriptionDefinitionRequest" : {
3545
- "type" : "structure",
3546
- "members" : {
3547
- "SubscriptionDefinitionId" : {
3548
- "shape" : "__string",
3549
- "location" : "uri",
3550
- "locationName" : "SubscriptionDefinitionId"
3551
- }
3552
- },
3553
- "required" : [ "SubscriptionDefinitionId" ]
3554
- },
3555
- "GetSubscriptionDefinitionResponse" : {
3556
- "type" : "structure",
3557
- "members" : {
3558
- "Arn" : {
3559
- "shape" : "__string"
3560
- },
3561
- "CreationTimestamp" : {
3562
- "shape" : "__string"
3563
- },
3564
- "Id" : {
3565
- "shape" : "__string"
3566
- },
3567
- "LastUpdatedTimestamp" : {
3568
- "shape" : "__string"
3569
- },
3570
- "LatestVersion" : {
3571
- "shape" : "__string"
3572
- },
3573
- "LatestVersionArn" : {
3574
- "shape" : "__string"
3575
- },
3576
- "Name" : {
3577
- "shape" : "__string"
3578
- }
3579
- }
3580
- },
3581
- "GetSubscriptionDefinitionVersionRequest" : {
3582
- "type" : "structure",
3583
- "members" : {
3584
- "NextToken" : {
3585
- "shape" : "__string",
3586
- "location" : "querystring",
3587
- "locationName" : "NextToken"
3588
- },
3589
- "SubscriptionDefinitionId" : {
3590
- "shape" : "__string",
3591
- "location" : "uri",
3592
- "locationName" : "SubscriptionDefinitionId"
3593
- },
3594
- "SubscriptionDefinitionVersionId" : {
3595
- "shape" : "__string",
3596
- "location" : "uri",
3597
- "locationName" : "SubscriptionDefinitionVersionId"
3598
- }
3599
- },
3600
- "required" : [ "SubscriptionDefinitionId", "SubscriptionDefinitionVersionId" ]
3601
- },
3602
- "GetSubscriptionDefinitionVersionResponse" : {
3603
- "type" : "structure",
3604
- "members" : {
3605
- "Arn" : {
3606
- "shape" : "__string"
3607
- },
3608
- "CreationTimestamp" : {
3609
- "shape" : "__string"
3610
- },
3611
- "Definition" : {
3612
- "shape" : "SubscriptionDefinitionVersion"
3613
- },
3614
- "Id" : {
3615
- "shape" : "__string"
3616
- },
3617
- "NextToken" : {
3618
- "shape" : "__string"
3619
- },
3620
- "Version" : {
3621
- "shape" : "__string"
3622
- }
3623
- }
3624
- },
3625
- "GroupCertificateAuthorityProperties" : {
3626
- "type" : "structure",
3627
- "members" : {
3628
- "GroupCertificateAuthorityArn" : {
3629
- "shape" : "__string"
3630
- },
3631
- "GroupCertificateAuthorityId" : {
3632
- "shape" : "__string"
3633
- }
3634
- }
3635
- },
3636
- "GroupCertificateConfiguration" : {
3637
- "type" : "structure",
3638
- "members" : {
3639
- "CertificateAuthorityExpiryInMilliseconds" : {
3640
- "shape" : "__string"
3641
- },
3642
- "CertificateExpiryInMilliseconds" : {
3643
- "shape" : "__string"
3644
- },
3645
- "GroupId" : {
3646
- "shape" : "__string"
3647
- }
3648
- }
3649
- },
3650
- "GroupInformation" : {
3651
- "type" : "structure",
3652
- "members" : {
3653
- "Arn" : {
3654
- "shape" : "__string"
3655
- },
3656
- "CreationTimestamp" : {
3657
- "shape" : "__string"
3658
- },
3659
- "Id" : {
3660
- "shape" : "__string"
3661
- },
3662
- "LastUpdatedTimestamp" : {
3663
- "shape" : "__string"
3664
- },
3665
- "LatestVersion" : {
3666
- "shape" : "__string"
3667
- },
3668
- "LatestVersionArn" : {
3669
- "shape" : "__string"
3670
- },
3671
- "Name" : {
3672
- "shape" : "__string"
3673
- }
3674
- }
3675
- },
3676
- "GroupOwnerSetting" : {
3677
- "type" : "structure",
3678
- "members" : {
3679
- "AutoAddGroupOwner" : {
3680
- "shape" : "__boolean"
3681
- },
3682
- "GroupOwner" : {
3683
- "shape" : "__string"
3684
- }
3685
- }
3686
- },
3687
- "GroupVersion" : {
3688
- "type" : "structure",
3689
- "members" : {
3690
- "ConnectorDefinitionVersionArn" : {
3691
- "shape" : "__string"
3692
- },
3693
- "CoreDefinitionVersionArn" : {
3694
- "shape" : "__string"
3695
- },
3696
- "DeviceDefinitionVersionArn" : {
3697
- "shape" : "__string"
3698
- },
3699
- "FunctionDefinitionVersionArn" : {
3700
- "shape" : "__string"
3701
- },
3702
- "LoggerDefinitionVersionArn" : {
3703
- "shape" : "__string"
3704
- },
3705
- "ResourceDefinitionVersionArn" : {
3706
- "shape" : "__string"
3707
- },
3708
- "SubscriptionDefinitionVersionArn" : {
3709
- "shape" : "__string"
3710
- }
3711
- }
3712
- },
3713
- "InternalServerErrorException" : {
3714
- "type" : "structure",
3715
- "members" : {
3716
- "ErrorDetails" : {
3717
- "shape" : "ErrorDetails"
3718
- },
3719
- "Message" : {
3720
- "shape" : "__string"
3721
- }
3722
- },
3723
- "exception" : true,
3724
- "error" : {
3725
- "httpStatusCode" : 500
3726
- }
3727
- },
3728
- "ListBulkDeploymentDetailedReportsRequest" : {
3729
- "type" : "structure",
3730
- "members" : {
3731
- "BulkDeploymentId" : {
3732
- "shape" : "__string",
3733
- "location" : "uri",
3734
- "locationName" : "BulkDeploymentId"
3735
- },
3736
- "MaxResults" : {
3737
- "shape" : "__string",
3738
- "location" : "querystring",
3739
- "locationName" : "MaxResults"
3740
- },
3741
- "NextToken" : {
3742
- "shape" : "__string",
3743
- "location" : "querystring",
3744
- "locationName" : "NextToken"
3745
- }
3746
- },
3747
- "required" : [ "BulkDeploymentId" ]
3748
- },
3749
- "ListBulkDeploymentDetailedReportsResponse" : {
3750
- "type" : "structure",
3751
- "members" : {
3752
- "Deployments" : {
3753
- "shape" : "BulkDeploymentResults"
3754
- },
3755
- "NextToken" : {
3756
- "shape" : "__string"
3757
- }
3758
- }
3759
- },
3760
- "ListBulkDeploymentsRequest" : {
3761
- "type" : "structure",
3762
- "members" : {
3763
- "MaxResults" : {
3764
- "shape" : "__string",
3765
- "location" : "querystring",
3766
- "locationName" : "MaxResults"
3767
- },
3768
- "NextToken" : {
3769
- "shape" : "__string",
3770
- "location" : "querystring",
3771
- "locationName" : "NextToken"
3772
- }
3773
- }
3774
- },
3775
- "ListBulkDeploymentsResponse" : {
3776
- "type" : "structure",
3777
- "members" : {
3778
- "BulkDeployments" : {
3779
- "shape" : "BulkDeployments"
3780
- },
3781
- "NextToken" : {
3782
- "shape" : "__string"
3783
- }
3784
- }
3785
- },
3786
- "ListConnectorDefinitionVersionsRequest" : {
3787
- "type" : "structure",
3788
- "members" : {
3789
- "ConnectorDefinitionId" : {
3790
- "shape" : "__string",
3791
- "location" : "uri",
3792
- "locationName" : "ConnectorDefinitionId"
3793
- },
3794
- "MaxResults" : {
3795
- "shape" : "__string",
3796
- "location" : "querystring",
3797
- "locationName" : "MaxResults"
3798
- },
3799
- "NextToken" : {
3800
- "shape" : "__string",
3801
- "location" : "querystring",
3802
- "locationName" : "NextToken"
3803
- }
3804
- },
3805
- "required" : [ "ConnectorDefinitionId" ]
3806
- },
3807
- "ListConnectorDefinitionVersionsResponse" : {
3808
- "type" : "structure",
3809
- "members" : {
3810
- "NextToken" : {
3811
- "shape" : "__string"
3812
- },
3813
- "Versions" : {
3814
- "shape" : "__listOfVersionInformation"
3815
- }
3816
- }
3817
- },
3818
- "ListConnectorDefinitionsRequest" : {
3819
- "type" : "structure",
3820
- "members" : {
3821
- "MaxResults" : {
3822
- "shape" : "__string",
3823
- "location" : "querystring",
3824
- "locationName" : "MaxResults"
3825
- },
3826
- "NextToken" : {
3827
- "shape" : "__string",
3828
- "location" : "querystring",
3829
- "locationName" : "NextToken"
3830
- }
3831
- }
3832
- },
3833
- "ListConnectorDefinitionsResponse" : {
3834
- "type" : "structure",
3835
- "members" : {
3836
- "Definitions" : {
3837
- "shape" : "__listOfDefinitionInformation"
3838
- },
3839
- "NextToken" : {
3840
- "shape" : "__string"
3841
- }
3842
- }
3843
- },
3844
- "ListCoreDefinitionVersionsRequest" : {
3845
- "type" : "structure",
3846
- "members" : {
3847
- "CoreDefinitionId" : {
3848
- "shape" : "__string",
3849
- "location" : "uri",
3850
- "locationName" : "CoreDefinitionId"
3851
- },
3852
- "MaxResults" : {
3853
- "shape" : "__string",
3854
- "location" : "querystring",
3855
- "locationName" : "MaxResults"
3856
- },
3857
- "NextToken" : {
3858
- "shape" : "__string",
3859
- "location" : "querystring",
3860
- "locationName" : "NextToken"
3861
- }
3862
- },
3863
- "required" : [ "CoreDefinitionId" ]
3864
- },
3865
- "ListCoreDefinitionVersionsResponse" : {
3866
- "type" : "structure",
3867
- "members" : {
3868
- "NextToken" : {
3869
- "shape" : "__string"
3870
- },
3871
- "Versions" : {
3872
- "shape" : "__listOfVersionInformation"
3873
- }
3874
- }
3875
- },
3876
- "ListCoreDefinitionsRequest" : {
3877
- "type" : "structure",
3878
- "members" : {
3879
- "MaxResults" : {
3880
- "shape" : "__string",
3881
- "location" : "querystring",
3882
- "locationName" : "MaxResults"
3883
- },
3884
- "NextToken" : {
3885
- "shape" : "__string",
3886
- "location" : "querystring",
3887
- "locationName" : "NextToken"
3888
- }
3889
- }
3890
- },
3891
- "ListCoreDefinitionsResponse" : {
3892
- "type" : "structure",
3893
- "members" : {
3894
- "Definitions" : {
3895
- "shape" : "__listOfDefinitionInformation"
3896
- },
3897
- "NextToken" : {
3898
- "shape" : "__string"
3899
- }
3900
- }
3901
- },
3902
- "ListDefinitionsResponse" : {
3903
- "type" : "structure",
3904
- "members" : {
3905
- "Definitions" : {
3906
- "shape" : "__listOfDefinitionInformation"
3907
- },
3908
- "NextToken" : {
3909
- "shape" : "__string"
3910
- }
3911
- }
3912
- },
3913
- "ListDeploymentsRequest" : {
3914
- "type" : "structure",
3915
- "members" : {
3916
- "GroupId" : {
3917
- "shape" : "__string",
3918
- "location" : "uri",
3919
- "locationName" : "GroupId"
3920
- },
3921
- "MaxResults" : {
3922
- "shape" : "__string",
3923
- "location" : "querystring",
3924
- "locationName" : "MaxResults"
3925
- },
3926
- "NextToken" : {
3927
- "shape" : "__string",
3928
- "location" : "querystring",
3929
- "locationName" : "NextToken"
3930
- }
3931
- },
3932
- "required" : [ "GroupId" ]
3933
- },
3934
- "ListDeploymentsResponse" : {
3935
- "type" : "structure",
3936
- "members" : {
3937
- "Deployments" : {
3938
- "shape" : "Deployments"
3939
- },
3940
- "NextToken" : {
3941
- "shape" : "__string"
3942
- }
3943
- }
3944
- },
3945
- "ListDeviceDefinitionVersionsRequest" : {
3946
- "type" : "structure",
3947
- "members" : {
3948
- "DeviceDefinitionId" : {
3949
- "shape" : "__string",
3950
- "location" : "uri",
3951
- "locationName" : "DeviceDefinitionId"
3952
- },
3953
- "MaxResults" : {
3954
- "shape" : "__string",
3955
- "location" : "querystring",
3956
- "locationName" : "MaxResults"
3957
- },
3958
- "NextToken" : {
3959
- "shape" : "__string",
3960
- "location" : "querystring",
3961
- "locationName" : "NextToken"
3962
- }
3963
- },
3964
- "required" : [ "DeviceDefinitionId" ]
3965
- },
3966
- "ListDeviceDefinitionVersionsResponse" : {
3967
- "type" : "structure",
3968
- "members" : {
3969
- "NextToken" : {
3970
- "shape" : "__string"
3971
- },
3972
- "Versions" : {
3973
- "shape" : "__listOfVersionInformation"
3974
- }
3975
- }
3976
- },
3977
- "ListDeviceDefinitionsRequest" : {
3978
- "type" : "structure",
3979
- "members" : {
3980
- "MaxResults" : {
3981
- "shape" : "__string",
3982
- "location" : "querystring",
3983
- "locationName" : "MaxResults"
3984
- },
3985
- "NextToken" : {
3986
- "shape" : "__string",
3987
- "location" : "querystring",
3988
- "locationName" : "NextToken"
3989
- }
3990
- }
3991
- },
3992
- "ListDeviceDefinitionsResponse" : {
3993
- "type" : "structure",
3994
- "members" : {
3995
- "Definitions" : {
3996
- "shape" : "__listOfDefinitionInformation"
3997
- },
3998
- "NextToken" : {
3999
- "shape" : "__string"
4000
- }
4001
- }
4002
- },
4003
- "ListFunctionDefinitionVersionsRequest" : {
4004
- "type" : "structure",
4005
- "members" : {
4006
- "FunctionDefinitionId" : {
4007
- "shape" : "__string",
4008
- "location" : "uri",
4009
- "locationName" : "FunctionDefinitionId"
4010
- },
4011
- "MaxResults" : {
4012
- "shape" : "__string",
4013
- "location" : "querystring",
4014
- "locationName" : "MaxResults"
4015
- },
4016
- "NextToken" : {
4017
- "shape" : "__string",
4018
- "location" : "querystring",
4019
- "locationName" : "NextToken"
4020
- }
4021
- },
4022
- "required" : [ "FunctionDefinitionId" ]
4023
- },
4024
- "ListFunctionDefinitionVersionsResponse" : {
4025
- "type" : "structure",
4026
- "members" : {
4027
- "NextToken" : {
4028
- "shape" : "__string"
4029
- },
4030
- "Versions" : {
4031
- "shape" : "__listOfVersionInformation"
4032
- }
4033
- }
4034
- },
4035
- "ListFunctionDefinitionsRequest" : {
4036
- "type" : "structure",
4037
- "members" : {
4038
- "MaxResults" : {
4039
- "shape" : "__string",
4040
- "location" : "querystring",
4041
- "locationName" : "MaxResults"
4042
- },
4043
- "NextToken" : {
4044
- "shape" : "__string",
4045
- "location" : "querystring",
4046
- "locationName" : "NextToken"
4047
- }
4048
- }
4049
- },
4050
- "ListFunctionDefinitionsResponse" : {
4051
- "type" : "structure",
4052
- "members" : {
4053
- "Definitions" : {
4054
- "shape" : "__listOfDefinitionInformation"
4055
- },
4056
- "NextToken" : {
4057
- "shape" : "__string"
4058
- }
4059
- }
4060
- },
4061
- "ListGroupCertificateAuthoritiesRequest" : {
4062
- "type" : "structure",
4063
- "members" : {
4064
- "GroupId" : {
4065
- "shape" : "__string",
4066
- "location" : "uri",
4067
- "locationName" : "GroupId"
4068
- }
4069
- },
4070
- "required" : [ "GroupId" ]
4071
- },
4072
- "ListGroupCertificateAuthoritiesResponse" : {
4073
- "type" : "structure",
4074
- "members" : {
4075
- "GroupCertificateAuthorities" : {
4076
- "shape" : "__listOfGroupCertificateAuthorityProperties"
4077
- }
4078
- }
4079
- },
4080
- "ListGroupVersionsRequest" : {
4081
- "type" : "structure",
4082
- "members" : {
4083
- "GroupId" : {
4084
- "shape" : "__string",
4085
- "location" : "uri",
4086
- "locationName" : "GroupId"
4087
- },
4088
- "MaxResults" : {
4089
- "shape" : "__string",
4090
- "location" : "querystring",
4091
- "locationName" : "MaxResults"
4092
- },
4093
- "NextToken" : {
4094
- "shape" : "__string",
4095
- "location" : "querystring",
4096
- "locationName" : "NextToken"
4097
- }
4098
- },
4099
- "required" : [ "GroupId" ]
4100
- },
4101
- "ListGroupVersionsResponse" : {
4102
- "type" : "structure",
4103
- "members" : {
4104
- "NextToken" : {
4105
- "shape" : "__string"
4106
- },
4107
- "Versions" : {
4108
- "shape" : "__listOfVersionInformation"
4109
- }
4110
- }
4111
- },
4112
- "ListGroupsRequest" : {
4113
- "type" : "structure",
4114
- "members" : {
4115
- "MaxResults" : {
4116
- "shape" : "__string",
4117
- "location" : "querystring",
4118
- "locationName" : "MaxResults"
4119
- },
4120
- "NextToken" : {
4121
- "shape" : "__string",
4122
- "location" : "querystring",
4123
- "locationName" : "NextToken"
4124
- }
4125
- }
4126
- },
4127
- "ListGroupsResponse" : {
4128
- "type" : "structure",
4129
- "members" : {
4130
- "Groups" : {
4131
- "shape" : "__listOfGroupInformation"
4132
- },
4133
- "NextToken" : {
4134
- "shape" : "__string"
4135
- }
4136
- }
4137
- },
4138
- "ListLoggerDefinitionVersionsRequest" : {
4139
- "type" : "structure",
4140
- "members" : {
4141
- "LoggerDefinitionId" : {
4142
- "shape" : "__string",
4143
- "location" : "uri",
4144
- "locationName" : "LoggerDefinitionId"
4145
- },
4146
- "MaxResults" : {
4147
- "shape" : "__string",
4148
- "location" : "querystring",
4149
- "locationName" : "MaxResults"
4150
- },
4151
- "NextToken" : {
4152
- "shape" : "__string",
4153
- "location" : "querystring",
4154
- "locationName" : "NextToken"
4155
- }
4156
- },
4157
- "required" : [ "LoggerDefinitionId" ]
4158
- },
4159
- "ListLoggerDefinitionVersionsResponse" : {
4160
- "type" : "structure",
4161
- "members" : {
4162
- "NextToken" : {
4163
- "shape" : "__string"
4164
- },
4165
- "Versions" : {
4166
- "shape" : "__listOfVersionInformation"
4167
- }
4168
- }
4169
- },
4170
- "ListLoggerDefinitionsRequest" : {
4171
- "type" : "structure",
4172
- "members" : {
4173
- "MaxResults" : {
4174
- "shape" : "__string",
4175
- "location" : "querystring",
4176
- "locationName" : "MaxResults"
4177
- },
4178
- "NextToken" : {
4179
- "shape" : "__string",
4180
- "location" : "querystring",
4181
- "locationName" : "NextToken"
4182
- }
4183
- }
4184
- },
4185
- "ListLoggerDefinitionsResponse" : {
4186
- "type" : "structure",
4187
- "members" : {
4188
- "Definitions" : {
4189
- "shape" : "__listOfDefinitionInformation"
4190
- },
4191
- "NextToken" : {
4192
- "shape" : "__string"
4193
- }
4194
- }
4195
- },
4196
- "ListResourceDefinitionVersionsRequest" : {
4197
- "type" : "structure",
4198
- "members" : {
4199
- "MaxResults" : {
4200
- "shape" : "__string",
4201
- "location" : "querystring",
4202
- "locationName" : "MaxResults"
4203
- },
4204
- "NextToken" : {
4205
- "shape" : "__string",
4206
- "location" : "querystring",
4207
- "locationName" : "NextToken"
4208
- },
4209
- "ResourceDefinitionId" : {
4210
- "shape" : "__string",
4211
- "location" : "uri",
4212
- "locationName" : "ResourceDefinitionId"
4213
- }
4214
- },
4215
- "required" : [ "ResourceDefinitionId" ]
4216
- },
4217
- "ListResourceDefinitionVersionsResponse" : {
4218
- "type" : "structure",
4219
- "members" : {
4220
- "NextToken" : {
4221
- "shape" : "__string"
4222
- },
4223
- "Versions" : {
4224
- "shape" : "__listOfVersionInformation"
4225
- }
4226
- }
4227
- },
4228
- "ListResourceDefinitionsRequest" : {
4229
- "type" : "structure",
4230
- "members" : {
4231
- "MaxResults" : {
4232
- "shape" : "__string",
4233
- "location" : "querystring",
4234
- "locationName" : "MaxResults"
4235
- },
4236
- "NextToken" : {
4237
- "shape" : "__string",
4238
- "location" : "querystring",
4239
- "locationName" : "NextToken"
4240
- }
4241
- }
4242
- },
4243
- "ListResourceDefinitionsResponse" : {
4244
- "type" : "structure",
4245
- "members" : {
4246
- "Definitions" : {
4247
- "shape" : "__listOfDefinitionInformation"
4248
- },
4249
- "NextToken" : {
4250
- "shape" : "__string"
4251
- }
4252
- }
4253
- },
4254
- "ListSubscriptionDefinitionVersionsRequest" : {
4255
- "type" : "structure",
4256
- "members" : {
4257
- "MaxResults" : {
4258
- "shape" : "__string",
4259
- "location" : "querystring",
4260
- "locationName" : "MaxResults"
4261
- },
4262
- "NextToken" : {
4263
- "shape" : "__string",
4264
- "location" : "querystring",
4265
- "locationName" : "NextToken"
4266
- },
4267
- "SubscriptionDefinitionId" : {
4268
- "shape" : "__string",
4269
- "location" : "uri",
4270
- "locationName" : "SubscriptionDefinitionId"
4271
- }
4272
- },
4273
- "required" : [ "SubscriptionDefinitionId" ]
4274
- },
4275
- "ListSubscriptionDefinitionVersionsResponse" : {
4276
- "type" : "structure",
4277
- "members" : {
4278
- "NextToken" : {
4279
- "shape" : "__string"
4280
- },
4281
- "Versions" : {
4282
- "shape" : "__listOfVersionInformation"
4283
- }
4284
- }
4285
- },
4286
- "ListSubscriptionDefinitionsRequest" : {
4287
- "type" : "structure",
4288
- "members" : {
4289
- "MaxResults" : {
4290
- "shape" : "__string",
4291
- "location" : "querystring",
4292
- "locationName" : "MaxResults"
4293
- },
4294
- "NextToken" : {
4295
- "shape" : "__string",
4296
- "location" : "querystring",
4297
- "locationName" : "NextToken"
4298
- }
4299
- }
4300
- },
4301
- "ListSubscriptionDefinitionsResponse" : {
4302
- "type" : "structure",
4303
- "members" : {
4304
- "Definitions" : {
4305
- "shape" : "__listOfDefinitionInformation"
4306
- },
4307
- "NextToken" : {
4308
- "shape" : "__string"
4309
- }
4310
- }
4311
- },
4312
- "ListVersionsResponse" : {
4313
- "type" : "structure",
4314
- "members" : {
4315
- "NextToken" : {
4316
- "shape" : "__string"
4317
- },
4318
- "Versions" : {
4319
- "shape" : "__listOfVersionInformation"
4320
- }
4321
- }
4322
- },
4323
- "LocalDeviceResourceData" : {
4324
- "type" : "structure",
4325
- "members" : {
4326
- "GroupOwnerSetting" : {
4327
- "shape" : "GroupOwnerSetting"
4328
- },
4329
- "SourcePath" : {
4330
- "shape" : "__string"
4331
- }
4332
- }
4333
- },
4334
- "LocalVolumeResourceData" : {
4335
- "type" : "structure",
4336
- "members" : {
4337
- "DestinationPath" : {
4338
- "shape" : "__string"
4339
- },
4340
- "GroupOwnerSetting" : {
4341
- "shape" : "GroupOwnerSetting"
4342
- },
4343
- "SourcePath" : {
4344
- "shape" : "__string"
4345
- }
4346
- }
4347
- },
4348
- "Logger" : {
4349
- "type" : "structure",
4350
- "members" : {
4351
- "Component" : {
4352
- "shape" : "LoggerComponent"
4353
- },
4354
- "Id" : {
4355
- "shape" : "__string"
4356
- },
4357
- "Level" : {
4358
- "shape" : "LoggerLevel"
4359
- },
4360
- "Space" : {
4361
- "shape" : "__integer"
4362
- },
4363
- "Type" : {
4364
- "shape" : "LoggerType"
4365
- }
4366
- },
4367
- "required" : [ ]
4368
- },
4369
- "LoggerComponent" : {
4370
- "type" : "string",
4371
- "enum" : [ "GreengrassSystem", "Lambda" ]
4372
- },
4373
- "LoggerDefinitionVersion" : {
4374
- "type" : "structure",
4375
- "members" : {
4376
- "Loggers" : {
4377
- "shape" : "__listOfLogger"
4378
- }
4379
- }
4380
- },
4381
- "LoggerLevel" : {
4382
- "type" : "string",
4383
- "enum" : [ "DEBUG", "INFO", "WARN", "ERROR", "FATAL" ]
4384
- },
4385
- "LoggerType" : {
4386
- "type" : "string",
4387
- "enum" : [ "FileSystem", "AWSCloudWatch" ]
4388
- },
4389
- "Permission" : {
4390
- "type" : "string",
4391
- "enum" : [ "ro", "rw" ]
4392
- },
4393
- "ResetDeploymentsRequest" : {
4394
- "type" : "structure",
4395
- "members" : {
4396
- "AmznClientToken" : {
4397
- "shape" : "__string",
4398
- "location" : "header",
4399
- "locationName" : "X-Amzn-Client-Token"
4400
- },
4401
- "Force" : {
4402
- "shape" : "__boolean"
4403
- },
4404
- "GroupId" : {
4405
- "shape" : "__string",
4406
- "location" : "uri",
4407
- "locationName" : "GroupId"
4408
- }
4409
- },
4410
- "required" : [ "GroupId" ]
4411
- },
4412
- "ResetDeploymentsResponse" : {
4413
- "type" : "structure",
4414
- "members" : {
4415
- "DeploymentArn" : {
4416
- "shape" : "__string"
4417
- },
4418
- "DeploymentId" : {
4419
- "shape" : "__string"
4420
- }
4421
- }
4422
- },
4423
- "Resource" : {
4424
- "type" : "structure",
4425
- "members" : {
4426
- "Id" : {
4427
- "shape" : "__string"
4428
- },
4429
- "Name" : {
4430
- "shape" : "__string"
4431
- },
4432
- "ResourceDataContainer" : {
4433
- "shape" : "ResourceDataContainer"
4434
- }
4435
- },
4436
- "required" : [ ]
4437
- },
4438
- "ResourceAccessPolicy" : {
4439
- "type" : "structure",
4440
- "members" : {
4441
- "Permission" : {
4442
- "shape" : "Permission"
4443
- },
4444
- "ResourceId" : {
4445
- "shape" : "__string"
4446
- }
4447
- },
4448
- "required" : [ ]
4449
- },
4450
- "ResourceDataContainer" : {
4451
- "type" : "structure",
4452
- "members" : {
4453
- "LocalDeviceResourceData" : {
4454
- "shape" : "LocalDeviceResourceData"
4455
- },
4456
- "LocalVolumeResourceData" : {
4457
- "shape" : "LocalVolumeResourceData"
4458
- },
4459
- "S3MachineLearningModelResourceData" : {
4460
- "shape" : "S3MachineLearningModelResourceData"
4461
- },
4462
- "SageMakerMachineLearningModelResourceData" : {
4463
- "shape" : "SageMakerMachineLearningModelResourceData"
4464
- },
4465
- "SecretsManagerSecretResourceData" : {
4466
- "shape" : "SecretsManagerSecretResourceData"
4467
- }
4468
- }
4469
- },
4470
- "ResourceDefinitionVersion" : {
4471
- "type" : "structure",
4472
- "members" : {
4473
- "Resources" : {
4474
- "shape" : "__listOfResource"
4475
- }
4476
- }
4477
- },
4478
- "S3MachineLearningModelResourceData" : {
4479
- "type" : "structure",
4480
- "members" : {
4481
- "DestinationPath" : {
4482
- "shape" : "__string"
4483
- },
4484
- "S3Uri" : {
4485
- "shape" : "__string"
4486
- }
4487
- }
4488
- },
4489
- "S3UrlSignerRole" : {
4490
- "type" : "string"
4491
- },
4492
- "SageMakerMachineLearningModelResourceData" : {
4493
- "type" : "structure",
4494
- "members" : {
4495
- "DestinationPath" : {
4496
- "shape" : "__string"
4497
- },
4498
- "SageMakerJobArn" : {
4499
- "shape" : "__string"
4500
- }
4501
- }
4502
- },
4503
- "SecretsManagerSecretResourceData" : {
4504
- "type" : "structure",
4505
- "members" : {
4506
- "ARN" : {
4507
- "shape" : "__string"
4508
- },
4509
- "AdditionalStagingLabelsToDownload" : {
4510
- "shape" : "__listOf__string"
4511
- }
4512
- }
4513
- },
4514
- "SoftwareToUpdate" : {
4515
- "type" : "string",
4516
- "enum" : [ "core", "ota_agent" ]
4517
- },
4518
- "StartBulkDeploymentRequest" : {
4519
- "type" : "structure",
4520
- "members" : {
4521
- "AmznClientToken" : {
4522
- "shape" : "__string",
4523
- "location" : "header",
4524
- "locationName" : "X-Amzn-Client-Token"
4525
- },
4526
- "ExecutionRoleArn" : {
4527
- "shape" : "__string"
4528
- },
4529
- "InputFileUri" : {
4530
- "shape" : "__string"
4531
- }
4532
- }
4533
- },
4534
- "StartBulkDeploymentResponse" : {
4535
- "type" : "structure",
4536
- "members" : {
4537
- "BulkDeploymentArn" : {
4538
- "shape" : "__string"
4539
- },
4540
- "BulkDeploymentId" : {
4541
- "shape" : "__string"
4542
- }
4543
- }
4544
- },
4545
- "StopBulkDeploymentRequest" : {
4546
- "type" : "structure",
4547
- "members" : {
4548
- "BulkDeploymentId" : {
4549
- "shape" : "__string",
4550
- "location" : "uri",
4551
- "locationName" : "BulkDeploymentId"
4552
- }
4553
- },
4554
- "required" : [ "BulkDeploymentId" ]
4555
- },
4556
- "StopBulkDeploymentResponse" : {
4557
- "type" : "structure",
4558
- "members" : { }
4559
- },
4560
- "Subscription" : {
4561
- "type" : "structure",
4562
- "members" : {
4563
- "Id" : {
4564
- "shape" : "__string"
4565
- },
4566
- "Source" : {
4567
- "shape" : "__string"
4568
- },
4569
- "Subject" : {
4570
- "shape" : "__string"
4571
- },
4572
- "Target" : {
4573
- "shape" : "__string"
4574
- }
4575
- },
4576
- "required" : [ ]
4577
- },
4578
- "SubscriptionDefinitionVersion" : {
4579
- "type" : "structure",
4580
- "members" : {
4581
- "Subscriptions" : {
4582
- "shape" : "__listOfSubscription"
4583
- }
4584
- }
4585
- },
4586
- "UpdateAgentLogLevel" : {
4587
- "type" : "string",
4588
- "enum" : [ "NONE", "TRACE", "DEBUG", "VERBOSE", "INFO", "WARN", "ERROR", "FATAL" ]
4589
- },
4590
- "UpdateConnectivityInfoRequest" : {
4591
- "type" : "structure",
4592
- "members" : {
4593
- "ConnectivityInfo" : {
4594
- "shape" : "__listOfConnectivityInfo"
4595
- },
4596
- "ThingName" : {
4597
- "shape" : "__string",
4598
- "location" : "uri",
4599
- "locationName" : "ThingName"
4600
- }
4601
- },
4602
- "required" : [ "ThingName" ]
4603
- },
4604
- "UpdateConnectivityInfoResponse" : {
4605
- "type" : "structure",
4606
- "members" : {
4607
- "Message" : {
4608
- "shape" : "__string",
4609
- "locationName" : "message"
4610
- },
4611
- "Version" : {
4612
- "shape" : "__string"
4613
- }
4614
- }
4615
- },
4616
- "UpdateConnectorDefinitionRequest" : {
4617
- "type" : "structure",
4618
- "members" : {
4619
- "ConnectorDefinitionId" : {
4620
- "shape" : "__string",
4621
- "location" : "uri",
4622
- "locationName" : "ConnectorDefinitionId"
4623
- },
4624
- "Name" : {
4625
- "shape" : "__string"
4626
- }
4627
- },
4628
- "required" : [ "ConnectorDefinitionId" ]
4629
- },
4630
- "UpdateConnectorDefinitionResponse" : {
4631
- "type" : "structure",
4632
- "members" : { }
4633
- },
4634
- "UpdateCoreDefinitionRequest" : {
4635
- "type" : "structure",
4636
- "members" : {
4637
- "CoreDefinitionId" : {
4638
- "shape" : "__string",
4639
- "location" : "uri",
4640
- "locationName" : "CoreDefinitionId"
4641
- },
4642
- "Name" : {
4643
- "shape" : "__string"
4644
- }
4645
- },
4646
- "required" : [ "CoreDefinitionId" ]
4647
- },
4648
- "UpdateCoreDefinitionResponse" : {
4649
- "type" : "structure",
4650
- "members" : { }
4651
- },
4652
- "UpdateDeviceDefinitionRequest" : {
4653
- "type" : "structure",
4654
- "members" : {
4655
- "DeviceDefinitionId" : {
4656
- "shape" : "__string",
4657
- "location" : "uri",
4658
- "locationName" : "DeviceDefinitionId"
4659
- },
4660
- "Name" : {
4661
- "shape" : "__string"
4662
- }
4663
- },
4664
- "required" : [ "DeviceDefinitionId" ]
4665
- },
4666
- "UpdateDeviceDefinitionResponse" : {
4667
- "type" : "structure",
4668
- "members" : { }
4669
- },
4670
- "UpdateFunctionDefinitionRequest" : {
4671
- "type" : "structure",
4672
- "members" : {
4673
- "FunctionDefinitionId" : {
4674
- "shape" : "__string",
4675
- "location" : "uri",
4676
- "locationName" : "FunctionDefinitionId"
4677
- },
4678
- "Name" : {
4679
- "shape" : "__string"
4680
- }
4681
- },
4682
- "required" : [ "FunctionDefinitionId" ]
4683
- },
4684
- "UpdateFunctionDefinitionResponse" : {
4685
- "type" : "structure",
4686
- "members" : { }
4687
- },
4688
- "UpdateGroupCertificateConfigurationRequest" : {
4689
- "type" : "structure",
4690
- "members" : {
4691
- "CertificateExpiryInMilliseconds" : {
4692
- "shape" : "__string"
4693
- },
4694
- "GroupId" : {
4695
- "shape" : "__string",
4696
- "location" : "uri",
4697
- "locationName" : "GroupId"
4698
- }
4699
- },
4700
- "required" : [ "GroupId" ]
4701
- },
4702
- "UpdateGroupCertificateConfigurationResponse" : {
4703
- "type" : "structure",
4704
- "members" : {
4705
- "CertificateAuthorityExpiryInMilliseconds" : {
4706
- "shape" : "__string"
4707
- },
4708
- "CertificateExpiryInMilliseconds" : {
4709
- "shape" : "__string"
4710
- },
4711
- "GroupId" : {
4712
- "shape" : "__string"
4713
- }
4714
- }
4715
- },
4716
- "UpdateGroupRequest" : {
4717
- "type" : "structure",
4718
- "members" : {
4719
- "GroupId" : {
4720
- "shape" : "__string",
4721
- "location" : "uri",
4722
- "locationName" : "GroupId"
4723
- },
4724
- "Name" : {
4725
- "shape" : "__string"
4726
- }
4727
- },
4728
- "required" : [ "GroupId" ]
4729
- },
4730
- "UpdateGroupResponse" : {
4731
- "type" : "structure",
4732
- "members" : { }
4733
- },
4734
- "UpdateLoggerDefinitionRequest" : {
4735
- "type" : "structure",
4736
- "members" : {
4737
- "LoggerDefinitionId" : {
4738
- "shape" : "__string",
4739
- "location" : "uri",
4740
- "locationName" : "LoggerDefinitionId"
4741
- },
4742
- "Name" : {
4743
- "shape" : "__string"
4744
- }
4745
- },
4746
- "required" : [ "LoggerDefinitionId" ]
4747
- },
4748
- "UpdateLoggerDefinitionResponse" : {
4749
- "type" : "structure",
4750
- "members" : { }
4751
- },
4752
- "UpdateResourceDefinitionRequest" : {
4753
- "type" : "structure",
4754
- "members" : {
4755
- "Name" : {
4756
- "shape" : "__string"
4757
- },
4758
- "ResourceDefinitionId" : {
4759
- "shape" : "__string",
4760
- "location" : "uri",
4761
- "locationName" : "ResourceDefinitionId"
4762
- }
4763
- },
4764
- "required" : [ "ResourceDefinitionId" ]
4765
- },
4766
- "UpdateResourceDefinitionResponse" : {
4767
- "type" : "structure",
4768
- "members" : { }
4769
- },
4770
- "UpdateSubscriptionDefinitionRequest" : {
4771
- "type" : "structure",
4772
- "members" : {
4773
- "Name" : {
4774
- "shape" : "__string"
4775
- },
4776
- "SubscriptionDefinitionId" : {
4777
- "shape" : "__string",
4778
- "location" : "uri",
4779
- "locationName" : "SubscriptionDefinitionId"
4780
- }
4781
- },
4782
- "required" : [ "SubscriptionDefinitionId" ]
4783
- },
4784
- "UpdateSubscriptionDefinitionResponse" : {
4785
- "type" : "structure",
4786
- "members" : { }
4787
- },
4788
- "UpdateTargets" : {
4789
- "type" : "list",
4790
- "member" : {
4791
- "shape" : "__string"
4792
- }
4793
- },
4794
- "UpdateTargetsArchitecture" : {
4795
- "type" : "string",
4796
- "enum" : [ "armv7l", "x86_64", "aarch64" ]
4797
- },
4798
- "UpdateTargetsOperatingSystem" : {
4799
- "type" : "string",
4800
- "enum" : [ "ubuntu", "raspbian", "amazon_linux" ]
4801
- },
4802
- "VersionInformation" : {
4803
- "type" : "structure",
4804
- "members" : {
4805
- "Arn" : {
4806
- "shape" : "__string"
4807
- },
4808
- "CreationTimestamp" : {
4809
- "shape" : "__string"
4810
- },
4811
- "Id" : {
4812
- "shape" : "__string"
4813
- },
4814
- "Version" : {
4815
- "shape" : "__string"
4816
- }
4817
- }
4818
- },
4819
- "__boolean" : {
4820
- "type" : "boolean"
4821
- },
4822
- "__double" : {
4823
- "type" : "double"
4824
- },
4825
- "__integer" : {
4826
- "type" : "integer"
4827
- },
4828
- "__listOfConnectivityInfo" : {
4829
- "type" : "list",
4830
- "member" : {
4831
- "shape" : "ConnectivityInfo"
4832
- }
4833
- },
4834
- "__listOfConnector" : {
4835
- "type" : "list",
4836
- "member" : {
4837
- "shape" : "Connector"
4838
- }
4839
- },
4840
- "__listOfCore" : {
4841
- "type" : "list",
4842
- "member" : {
4843
- "shape" : "Core"
4844
- }
4845
- },
4846
- "__listOfDefinitionInformation" : {
4847
- "type" : "list",
4848
- "member" : {
4849
- "shape" : "DefinitionInformation"
4850
- }
4851
- },
4852
- "__listOfDevice" : {
4853
- "type" : "list",
4854
- "member" : {
4855
- "shape" : "Device"
4856
- }
4857
- },
4858
- "__listOfFunction" : {
4859
- "type" : "list",
4860
- "member" : {
4861
- "shape" : "Function"
4862
- }
4863
- },
4864
- "__listOfGroupCertificateAuthorityProperties" : {
4865
- "type" : "list",
4866
- "member" : {
4867
- "shape" : "GroupCertificateAuthorityProperties"
4868
- }
4869
- },
4870
- "__listOfGroupInformation" : {
4871
- "type" : "list",
4872
- "member" : {
4873
- "shape" : "GroupInformation"
4874
- }
4875
- },
4876
- "__listOfLogger" : {
4877
- "type" : "list",
4878
- "member" : {
4879
- "shape" : "Logger"
4880
- }
4881
- },
4882
- "__listOfResource" : {
4883
- "type" : "list",
4884
- "member" : {
4885
- "shape" : "Resource"
4886
- }
4887
- },
4888
- "__listOfResourceAccessPolicy" : {
4889
- "type" : "list",
4890
- "member" : {
4891
- "shape" : "ResourceAccessPolicy"
4892
- }
4893
- },
4894
- "__listOfSubscription" : {
4895
- "type" : "list",
4896
- "member" : {
4897
- "shape" : "Subscription"
4898
- }
4899
- },
4900
- "__listOfVersionInformation" : {
4901
- "type" : "list",
4902
- "member" : {
4903
- "shape" : "VersionInformation"
4904
- }
4905
- },
4906
- "__listOf__string" : {
4907
- "type" : "list",
4908
- "member" : {
4909
- "shape" : "__string"
4910
- }
4911
- },
4912
- "__long" : {
4913
- "type" : "long"
4914
- },
4915
- "__mapOf__string" : {
4916
- "type" : "map",
4917
- "key" : {
4918
- "shape" : "__string"
4919
- },
4920
- "value" : {
4921
- "shape" : "__string"
4922
- }
4923
- },
4924
- "__string" : {
4925
- "type" : "string"
4926
- },
4927
- "__timestampIso8601" : {
4928
- "type" : "timestamp",
4929
- "timestampFormat" : "iso8601"
4930
- },
4931
- "__timestampUnix" : {
4932
- "type" : "timestamp",
4933
- "timestampFormat" : "unixTimestamp"
4934
- }
4935
- }
4936
- }