aws-sdk-euca 1.8.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (539) hide show
  1. data/.yardopts +5 -0
  2. data/LICENSE.txt +12 -0
  3. data/README.rdoc +189 -0
  4. data/ca-bundle.crt +3895 -0
  5. data/lib/aws-sdk-euca.rb +79 -0
  6. data/lib/aws-sdk.rb +79 -0
  7. data/lib/aws.rb +14 -0
  8. data/lib/aws/api_config/AutoScaling-2011-01-01.yml +825 -0
  9. data/lib/aws/api_config/CloudFormation-2010-05-15.yml +322 -0
  10. data/lib/aws/api_config/CloudFront-2012-05-05.yml +2102 -0
  11. data/lib/aws/api_config/CloudSearch-2011-02-01.yml +681 -0
  12. data/lib/aws/api_config/CloudWatch-2010-08-01.yml +433 -0
  13. data/lib/aws/api_config/DataPipeline-2012-10-29.yml +422 -0
  14. data/lib/aws/api_config/DynamoDB-2011-12-05.yml +1160 -0
  15. data/lib/aws/api_config/EC2-2013-02-01.yml +4368 -0
  16. data/lib/aws/api_config/ELB-2012-06-01.yml +597 -0
  17. data/lib/aws/api_config/EMR-2009-03-31.yml +370 -0
  18. data/lib/aws/api_config/ElastiCache-2012-03-09.yml +777 -0
  19. data/lib/aws/api_config/ElastiCache-2012-11-15.yml +979 -0
  20. data/lib/aws/api_config/ElasticBeanstalk-2010-12-01.yml +823 -0
  21. data/lib/aws/api_config/ElasticTranscoder-2012-09-25.yml +1036 -0
  22. data/lib/aws/api_config/Glacier-2012-06-01.yml +618 -0
  23. data/lib/aws/api_config/IAM-2010-05-08.yml +1222 -0
  24. data/lib/aws/api_config/ImportExport-2010-06-01.yml +109 -0
  25. data/lib/aws/api_config/OpsWorks-2013-02-18.yml +1463 -0
  26. data/lib/aws/api_config/RDS-2012-09-17.yml +1861 -0
  27. data/lib/aws/api_config/RDS-2013-02-12.yml +2377 -0
  28. data/lib/aws/api_config/Redshift-2012-12-01.yml +1149 -0
  29. data/lib/aws/api_config/Route53-2012-02-29.yml +380 -0
  30. data/lib/aws/api_config/Route53-2012-12-12.yml +547 -0
  31. data/lib/aws/api_config/SNS-2010-03-31.yml +249 -0
  32. data/lib/aws/api_config/SQS-2012-11-05.yml +317 -0
  33. data/lib/aws/api_config/STS-2011-06-15.yml +81 -0
  34. data/lib/aws/api_config/SimpleDB-2009-04-15.yml +306 -0
  35. data/lib/aws/api_config/SimpleEmailService-2010-12-01.yml +346 -0
  36. data/lib/aws/api_config/SimpleWorkflow-2012-01-25.yml +2358 -0
  37. data/lib/aws/api_config/StorageGateway-2012-06-30.yml +748 -0
  38. data/lib/aws/auto_scaling.rb +164 -0
  39. data/lib/aws/auto_scaling/activity.rb +102 -0
  40. data/lib/aws/auto_scaling/activity_collection.rb +82 -0
  41. data/lib/aws/auto_scaling/client.rb +521 -0
  42. data/lib/aws/auto_scaling/config.rb +18 -0
  43. data/lib/aws/auto_scaling/errors.rb +22 -0
  44. data/lib/aws/auto_scaling/group.rb +420 -0
  45. data/lib/aws/auto_scaling/group_collection.rb +96 -0
  46. data/lib/aws/auto_scaling/group_options.rb +146 -0
  47. data/lib/aws/auto_scaling/instance.rb +192 -0
  48. data/lib/aws/auto_scaling/instance_collection.rb +63 -0
  49. data/lib/aws/auto_scaling/launch_configuration.rb +158 -0
  50. data/lib/aws/auto_scaling/launch_configuration_collection.rb +154 -0
  51. data/lib/aws/auto_scaling/notification_configuration.rb +89 -0
  52. data/lib/aws/auto_scaling/notification_configuration_collection.rb +184 -0
  53. data/lib/aws/auto_scaling/request.rb +29 -0
  54. data/lib/aws/auto_scaling/scaling_policy.rb +142 -0
  55. data/lib/aws/auto_scaling/scaling_policy_collection.rb +72 -0
  56. data/lib/aws/auto_scaling/scaling_policy_options.rb +64 -0
  57. data/lib/aws/auto_scaling/scheduled_action.rb +145 -0
  58. data/lib/aws/auto_scaling/scheduled_action_collection.rb +195 -0
  59. data/lib/aws/auto_scaling/tag.rb +59 -0
  60. data/lib/aws/auto_scaling/tag_collection.rb +112 -0
  61. data/lib/aws/cloud_formation.rb +272 -0
  62. data/lib/aws/cloud_formation/client.rb +369 -0
  63. data/lib/aws/cloud_formation/config.rb +18 -0
  64. data/lib/aws/cloud_formation/errors.rb +22 -0
  65. data/lib/aws/cloud_formation/request.rb +29 -0
  66. data/lib/aws/cloud_formation/stack.rb +255 -0
  67. data/lib/aws/cloud_formation/stack_collection.rb +209 -0
  68. data/lib/aws/cloud_formation/stack_event.rb +75 -0
  69. data/lib/aws/cloud_formation/stack_event_collection.rb +47 -0
  70. data/lib/aws/cloud_formation/stack_options.rb +72 -0
  71. data/lib/aws/cloud_formation/stack_output.rb +53 -0
  72. data/lib/aws/cloud_formation/stack_resource.rb +117 -0
  73. data/lib/aws/cloud_formation/stack_resource_collection.rb +84 -0
  74. data/lib/aws/cloud_formation/stack_resource_summary_collection.rb +64 -0
  75. data/lib/aws/cloud_formation/stack_summary_collection.rb +123 -0
  76. data/lib/aws/cloud_front.rb +73 -0
  77. data/lib/aws/cloud_front/client.rb +1307 -0
  78. data/lib/aws/cloud_front/config.rb +18 -0
  79. data/lib/aws/cloud_front/errors.rb +22 -0
  80. data/lib/aws/cloud_front/request.rb +44 -0
  81. data/lib/aws/cloud_search.rb +74 -0
  82. data/lib/aws/cloud_search/client.rb +558 -0
  83. data/lib/aws/cloud_search/config.rb +18 -0
  84. data/lib/aws/cloud_search/errors.rb +22 -0
  85. data/lib/aws/cloud_search/request.rb +23 -0
  86. data/lib/aws/cloud_watch.rb +119 -0
  87. data/lib/aws/cloud_watch/alarm.rb +272 -0
  88. data/lib/aws/cloud_watch/alarm_collection.rb +153 -0
  89. data/lib/aws/cloud_watch/alarm_history_item.rb +50 -0
  90. data/lib/aws/cloud_watch/alarm_history_item_collection.rb +84 -0
  91. data/lib/aws/cloud_watch/client.rb +247 -0
  92. data/lib/aws/cloud_watch/config.rb +18 -0
  93. data/lib/aws/cloud_watch/errors.rb +22 -0
  94. data/lib/aws/cloud_watch/metric.rb +135 -0
  95. data/lib/aws/cloud_watch/metric_alarm_collection.rb +160 -0
  96. data/lib/aws/cloud_watch/metric_collection.rb +131 -0
  97. data/lib/aws/cloud_watch/metric_statistics.rb +69 -0
  98. data/lib/aws/cloud_watch/request.rb +23 -0
  99. data/lib/aws/core.rb +587 -0
  100. data/lib/aws/core/async_handle.rb +90 -0
  101. data/lib/aws/core/autoloader.rb +64 -0
  102. data/lib/aws/core/cacheable.rb +78 -0
  103. data/lib/aws/core/client.rb +691 -0
  104. data/lib/aws/core/collection.rb +267 -0
  105. data/lib/aws/core/collection/simple.rb +82 -0
  106. data/lib/aws/core/collection/with_limit_and_next_token.rb +71 -0
  107. data/lib/aws/core/collection/with_next_token.rb +97 -0
  108. data/lib/aws/core/configuration.rb +546 -0
  109. data/lib/aws/core/credential_providers.rb +461 -0
  110. data/lib/aws/core/data.rb +247 -0
  111. data/lib/aws/core/http/curb_handler.rb +155 -0
  112. data/lib/aws/core/http/handler.rb +89 -0
  113. data/lib/aws/core/http/net_http_handler.rb +128 -0
  114. data/lib/aws/core/http/request.rb +263 -0
  115. data/lib/aws/core/http/response.rb +81 -0
  116. data/lib/aws/core/indifferent_hash.rb +88 -0
  117. data/lib/aws/core/inflection.rb +56 -0
  118. data/lib/aws/core/json_client.rb +47 -0
  119. data/lib/aws/core/json_parser.rb +76 -0
  120. data/lib/aws/core/json_request_builder.rb +35 -0
  121. data/lib/aws/core/json_response_parser.rb +79 -0
  122. data/lib/aws/core/lazy_error_classes.rb +90 -0
  123. data/lib/aws/core/log_formatter.rb +462 -0
  124. data/lib/aws/core/managed_file.rb +32 -0
  125. data/lib/aws/core/meta_utils.rb +45 -0
  126. data/lib/aws/core/model.rb +57 -0
  127. data/lib/aws/core/naming.rb +30 -0
  128. data/lib/aws/core/option_grammar.rb +735 -0
  129. data/lib/aws/core/options/json_serializer.rb +82 -0
  130. data/lib/aws/core/options/validator.rb +155 -0
  131. data/lib/aws/core/options/xml_serializer.rb +118 -0
  132. data/lib/aws/core/page_result.rb +75 -0
  133. data/lib/aws/core/policy.rb +916 -0
  134. data/lib/aws/core/query_client.rb +41 -0
  135. data/lib/aws/core/query_error_parser.rb +24 -0
  136. data/lib/aws/core/query_request_builder.rb +47 -0
  137. data/lib/aws/core/query_response_parser.rb +35 -0
  138. data/lib/aws/core/resource.rb +413 -0
  139. data/lib/aws/core/resource_cache.rb +40 -0
  140. data/lib/aws/core/response.rb +208 -0
  141. data/lib/aws/core/response_cache.rb +50 -0
  142. data/lib/aws/core/rest_error_parser.rb +24 -0
  143. data/lib/aws/core/rest_json_client.rb +40 -0
  144. data/lib/aws/core/rest_request_builder.rb +146 -0
  145. data/lib/aws/core/rest_response_parser.rb +66 -0
  146. data/lib/aws/core/rest_xml_client.rb +47 -0
  147. data/lib/aws/core/service_interface.rb +61 -0
  148. data/lib/aws/core/signature/version_2.rb +56 -0
  149. data/lib/aws/core/signature/version_3.rb +77 -0
  150. data/lib/aws/core/signature/version_3_https.rb +54 -0
  151. data/lib/aws/core/signature/version_4.rb +135 -0
  152. data/lib/aws/core/signer.rb +46 -0
  153. data/lib/aws/core/uri_escape.rb +44 -0
  154. data/lib/aws/core/xml/frame.rb +244 -0
  155. data/lib/aws/core/xml/frame_stack.rb +85 -0
  156. data/lib/aws/core/xml/grammar.rb +307 -0
  157. data/lib/aws/core/xml/parser.rb +70 -0
  158. data/lib/aws/core/xml/root_frame.rb +65 -0
  159. data/lib/aws/core/xml/sax_handlers/libxml.rb +47 -0
  160. data/lib/aws/core/xml/sax_handlers/nokogiri.rb +55 -0
  161. data/lib/aws/core/xml/sax_handlers/ox.rb +41 -0
  162. data/lib/aws/core/xml/sax_handlers/rexml.rb +43 -0
  163. data/lib/aws/core/xml/stub.rb +123 -0
  164. data/lib/aws/data_pipeline.rb +73 -0
  165. data/lib/aws/data_pipeline/client.rb +339 -0
  166. data/lib/aws/data_pipeline/config.rb +18 -0
  167. data/lib/aws/data_pipeline/errors.rb +20 -0
  168. data/lib/aws/data_pipeline/request.rb +26 -0
  169. data/lib/aws/dynamo_db.rb +206 -0
  170. data/lib/aws/dynamo_db/attribute_collection.rb +461 -0
  171. data/lib/aws/dynamo_db/batch_get.rb +213 -0
  172. data/lib/aws/dynamo_db/batch_write.rb +252 -0
  173. data/lib/aws/dynamo_db/binary.rb +35 -0
  174. data/lib/aws/dynamo_db/client.rb +904 -0
  175. data/lib/aws/dynamo_db/config.rb +24 -0
  176. data/lib/aws/dynamo_db/errors.rb +20 -0
  177. data/lib/aws/dynamo_db/expectations.rb +40 -0
  178. data/lib/aws/dynamo_db/item.rb +133 -0
  179. data/lib/aws/dynamo_db/item_collection.rb +852 -0
  180. data/lib/aws/dynamo_db/item_data.rb +31 -0
  181. data/lib/aws/dynamo_db/keys.rb +41 -0
  182. data/lib/aws/dynamo_db/primary_key_element.rb +48 -0
  183. data/lib/aws/dynamo_db/request.rb +26 -0
  184. data/lib/aws/dynamo_db/resource.rb +33 -0
  185. data/lib/aws/dynamo_db/table.rb +491 -0
  186. data/lib/aws/dynamo_db/table_collection.rb +165 -0
  187. data/lib/aws/dynamo_db/types.rb +111 -0
  188. data/lib/aws/ec2.rb +440 -0
  189. data/lib/aws/ec2/attachment.rb +140 -0
  190. data/lib/aws/ec2/attachment_collection.rb +54 -0
  191. data/lib/aws/ec2/availability_zone.rb +86 -0
  192. data/lib/aws/ec2/availability_zone_collection.rb +43 -0
  193. data/lib/aws/ec2/block_device_mappings.rb +53 -0
  194. data/lib/aws/ec2/client.rb +3621 -0
  195. data/lib/aws/ec2/collection.rb +36 -0
  196. data/lib/aws/ec2/config.rb +18 -0
  197. data/lib/aws/ec2/config_transform.rb +63 -0
  198. data/lib/aws/ec2/customer_gateway.rb +90 -0
  199. data/lib/aws/ec2/customer_gateway_collection.rb +73 -0
  200. data/lib/aws/ec2/dhcp_options.rb +106 -0
  201. data/lib/aws/ec2/dhcp_options_collection.rb +87 -0
  202. data/lib/aws/ec2/elastic_ip.rb +208 -0
  203. data/lib/aws/ec2/elastic_ip_collection.rb +97 -0
  204. data/lib/aws/ec2/errors.rb +32 -0
  205. data/lib/aws/ec2/export_task.rb +120 -0
  206. data/lib/aws/ec2/export_task_collection.rb +67 -0
  207. data/lib/aws/ec2/filtered_collection.rb +89 -0
  208. data/lib/aws/ec2/has_permissions.rb +44 -0
  209. data/lib/aws/ec2/image.rb +264 -0
  210. data/lib/aws/ec2/image_collection.rb +228 -0
  211. data/lib/aws/ec2/instance.rb +796 -0
  212. data/lib/aws/ec2/instance_collection.rb +372 -0
  213. data/lib/aws/ec2/internet_gateway.rb +122 -0
  214. data/lib/aws/ec2/internet_gateway/attachment.rb +78 -0
  215. data/lib/aws/ec2/internet_gateway_collection.rb +54 -0
  216. data/lib/aws/ec2/key_pair.rb +82 -0
  217. data/lib/aws/ec2/key_pair_collection.rb +99 -0
  218. data/lib/aws/ec2/network_acl.rb +256 -0
  219. data/lib/aws/ec2/network_acl/association.rb +56 -0
  220. data/lib/aws/ec2/network_acl/entry.rb +147 -0
  221. data/lib/aws/ec2/network_acl_collection.rb +64 -0
  222. data/lib/aws/ec2/network_interface.rb +228 -0
  223. data/lib/aws/ec2/network_interface/attachment.rb +100 -0
  224. data/lib/aws/ec2/network_interface_collection.rb +103 -0
  225. data/lib/aws/ec2/permission_collection.rb +174 -0
  226. data/lib/aws/ec2/region.rb +106 -0
  227. data/lib/aws/ec2/region_collection.rb +51 -0
  228. data/lib/aws/ec2/request.rb +21 -0
  229. data/lib/aws/ec2/reserved_instances.rb +56 -0
  230. data/lib/aws/ec2/reserved_instances_collection.rb +40 -0
  231. data/lib/aws/ec2/reserved_instances_offering.rb +60 -0
  232. data/lib/aws/ec2/reserved_instances_offering_collection.rb +39 -0
  233. data/lib/aws/ec2/resource.rb +161 -0
  234. data/lib/aws/ec2/resource_tag_collection.rb +211 -0
  235. data/lib/aws/ec2/route_table.rb +205 -0
  236. data/lib/aws/ec2/route_table/association.rb +119 -0
  237. data/lib/aws/ec2/route_table/route.rb +119 -0
  238. data/lib/aws/ec2/route_table_collection.rb +72 -0
  239. data/lib/aws/ec2/security_group.rb +484 -0
  240. data/lib/aws/ec2/security_group/ip_permission.rb +135 -0
  241. data/lib/aws/ec2/security_group/ip_permission_collection.rb +82 -0
  242. data/lib/aws/ec2/security_group_collection.rb +135 -0
  243. data/lib/aws/ec2/snapshot.rb +143 -0
  244. data/lib/aws/ec2/snapshot_collection.rb +132 -0
  245. data/lib/aws/ec2/subnet.rb +161 -0
  246. data/lib/aws/ec2/subnet_collection.rb +115 -0
  247. data/lib/aws/ec2/tag.rb +81 -0
  248. data/lib/aws/ec2/tag_collection.rb +107 -0
  249. data/lib/aws/ec2/tagged_collection.rb +53 -0
  250. data/lib/aws/ec2/tagged_item.rb +85 -0
  251. data/lib/aws/ec2/volume.rb +174 -0
  252. data/lib/aws/ec2/volume_collection.rb +101 -0
  253. data/lib/aws/ec2/vpc.rb +166 -0
  254. data/lib/aws/ec2/vpc_collection.rb +70 -0
  255. data/lib/aws/ec2/vpn_connection.rb +99 -0
  256. data/lib/aws/ec2/vpn_connection/telemetry.rb +49 -0
  257. data/lib/aws/ec2/vpn_connection_collection.rb +96 -0
  258. data/lib/aws/ec2/vpn_gateway.rb +123 -0
  259. data/lib/aws/ec2/vpn_gateway/attachment.rb +45 -0
  260. data/lib/aws/ec2/vpn_gateway_collection.rb +77 -0
  261. data/lib/aws/elastic_beanstalk.rb +50 -0
  262. data/lib/aws/elastic_beanstalk/client.rb +867 -0
  263. data/lib/aws/elastic_beanstalk/config.rb +18 -0
  264. data/lib/aws/elastic_beanstalk/errors.rb +22 -0
  265. data/lib/aws/elastic_beanstalk/request.rb +29 -0
  266. data/lib/aws/elastic_transcoder.rb +30 -0
  267. data/lib/aws/elastic_transcoder/client.rb +672 -0
  268. data/lib/aws/elastic_transcoder/config.rb +18 -0
  269. data/lib/aws/elastic_transcoder/errors.rb +23 -0
  270. data/lib/aws/elastic_transcoder/request.rb +30 -0
  271. data/lib/aws/elasticache.rb +50 -0
  272. data/lib/aws/elasticache/client.rb +920 -0
  273. data/lib/aws/elasticache/config.rb +18 -0
  274. data/lib/aws/elasticache/errors.rb +22 -0
  275. data/lib/aws/elasticache/request.rb +23 -0
  276. data/lib/aws/elb.rb +67 -0
  277. data/lib/aws/elb/availability_zone_collection.rb +138 -0
  278. data/lib/aws/elb/backend_server_policy_collection.rb +139 -0
  279. data/lib/aws/elb/client.rb +500 -0
  280. data/lib/aws/elb/config.rb +18 -0
  281. data/lib/aws/elb/errors.rb +26 -0
  282. data/lib/aws/elb/instance_collection.rb +173 -0
  283. data/lib/aws/elb/listener.rb +190 -0
  284. data/lib/aws/elb/listener_collection.rb +113 -0
  285. data/lib/aws/elb/listener_opts.rb +45 -0
  286. data/lib/aws/elb/load_balancer.rb +281 -0
  287. data/lib/aws/elb/load_balancer_collection.rb +134 -0
  288. data/lib/aws/elb/load_balancer_policy.rb +93 -0
  289. data/lib/aws/elb/load_balancer_policy_collection.rb +208 -0
  290. data/lib/aws/elb/request.rb +29 -0
  291. data/lib/aws/emr.rb +86 -0
  292. data/lib/aws/emr/client.rb +330 -0
  293. data/lib/aws/emr/config.rb +18 -0
  294. data/lib/aws/emr/errors.rb +22 -0
  295. data/lib/aws/emr/instance_group.rb +138 -0
  296. data/lib/aws/emr/instance_group_collection.rb +82 -0
  297. data/lib/aws/emr/job_flow.rb +306 -0
  298. data/lib/aws/emr/job_flow_collection.rb +185 -0
  299. data/lib/aws/emr/request.rb +23 -0
  300. data/lib/aws/errors.rb +162 -0
  301. data/lib/aws/glacier.rb +80 -0
  302. data/lib/aws/glacier/archive.rb +56 -0
  303. data/lib/aws/glacier/archive_collection.rb +146 -0
  304. data/lib/aws/glacier/client.rb +286 -0
  305. data/lib/aws/glacier/config.rb +19 -0
  306. data/lib/aws/glacier/errors.rb +22 -0
  307. data/lib/aws/glacier/request.rb +34 -0
  308. data/lib/aws/glacier/resource.rb +30 -0
  309. data/lib/aws/glacier/vault.rb +145 -0
  310. data/lib/aws/glacier/vault_collection.rb +75 -0
  311. data/lib/aws/glacier/vault_notification_configuration.rb +29 -0
  312. data/lib/aws/iam.rb +420 -0
  313. data/lib/aws/iam/access_key.rb +180 -0
  314. data/lib/aws/iam/access_key_collection.rb +128 -0
  315. data/lib/aws/iam/account_alias_collection.rb +79 -0
  316. data/lib/aws/iam/client.rb +1092 -0
  317. data/lib/aws/iam/collection.rb +83 -0
  318. data/lib/aws/iam/config.rb +18 -0
  319. data/lib/aws/iam/errors.rb +22 -0
  320. data/lib/aws/iam/group.rb +111 -0
  321. data/lib/aws/iam/group_collection.rb +132 -0
  322. data/lib/aws/iam/group_policy_collection.rb +47 -0
  323. data/lib/aws/iam/group_user_collection.rb +84 -0
  324. data/lib/aws/iam/login_profile.rb +99 -0
  325. data/lib/aws/iam/mfa_device.rb +52 -0
  326. data/lib/aws/iam/mfa_device_collection.rb +127 -0
  327. data/lib/aws/iam/policy.rb +46 -0
  328. data/lib/aws/iam/policy_collection.rb +188 -0
  329. data/lib/aws/iam/request.rb +29 -0
  330. data/lib/aws/iam/resource.rb +62 -0
  331. data/lib/aws/iam/server_certificate.rb +141 -0
  332. data/lib/aws/iam/server_certificate_collection.rb +138 -0
  333. data/lib/aws/iam/signing_certificate.rb +169 -0
  334. data/lib/aws/iam/signing_certificate_collection.rb +131 -0
  335. data/lib/aws/iam/user.rb +205 -0
  336. data/lib/aws/iam/user_collection.rb +133 -0
  337. data/lib/aws/iam/user_group_collection.rb +98 -0
  338. data/lib/aws/iam/user_policy.rb +90 -0
  339. data/lib/aws/iam/user_policy_collection.rb +45 -0
  340. data/lib/aws/iam/virtual_mfa_device.rb +139 -0
  341. data/lib/aws/iam/virtual_mfa_device_collection.rb +73 -0
  342. data/lib/aws/import_export.rb +73 -0
  343. data/lib/aws/import_export/client.rb +109 -0
  344. data/lib/aws/import_export/config.rb +19 -0
  345. data/lib/aws/import_export/errors.rb +22 -0
  346. data/lib/aws/import_export/request.rb +23 -0
  347. data/lib/aws/ops_works.rb +30 -0
  348. data/lib/aws/ops_works/client.rb +713 -0
  349. data/lib/aws/ops_works/config.rb +18 -0
  350. data/lib/aws/ops_works/errors.rb +20 -0
  351. data/lib/aws/ops_works/request.rb +27 -0
  352. data/lib/aws/rails.rb +195 -0
  353. data/lib/aws/rds.rb +71 -0
  354. data/lib/aws/rds/client.rb +2228 -0
  355. data/lib/aws/rds/config.rb +18 -0
  356. data/lib/aws/rds/db_instance.rb +205 -0
  357. data/lib/aws/rds/db_instance_collection.rb +75 -0
  358. data/lib/aws/rds/db_snapshot.rb +163 -0
  359. data/lib/aws/rds/db_snapshot_collection.rb +89 -0
  360. data/lib/aws/rds/errors.rb +22 -0
  361. data/lib/aws/rds/request.rb +23 -0
  362. data/lib/aws/record.rb +116 -0
  363. data/lib/aws/record/abstract_base.rb +701 -0
  364. data/lib/aws/record/attributes.rb +384 -0
  365. data/lib/aws/record/conversion.rb +38 -0
  366. data/lib/aws/record/dirty_tracking.rb +285 -0
  367. data/lib/aws/record/errors.rb +143 -0
  368. data/lib/aws/record/exceptions.rb +48 -0
  369. data/lib/aws/record/hash_model.rb +161 -0
  370. data/lib/aws/record/hash_model/attributes.rb +197 -0
  371. data/lib/aws/record/hash_model/finder_methods.rb +172 -0
  372. data/lib/aws/record/hash_model/scope.rb +108 -0
  373. data/lib/aws/record/model.rb +427 -0
  374. data/lib/aws/record/model/attributes.rb +379 -0
  375. data/lib/aws/record/model/finder_methods.rb +232 -0
  376. data/lib/aws/record/model/scope.rb +213 -0
  377. data/lib/aws/record/naming.rb +31 -0
  378. data/lib/aws/record/scope.rb +199 -0
  379. data/lib/aws/record/validations.rb +712 -0
  380. data/lib/aws/record/validator.rb +246 -0
  381. data/lib/aws/record/validators/acceptance.rb +51 -0
  382. data/lib/aws/record/validators/block.rb +38 -0
  383. data/lib/aws/record/validators/confirmation.rb +43 -0
  384. data/lib/aws/record/validators/count.rb +108 -0
  385. data/lib/aws/record/validators/exclusion.rb +43 -0
  386. data/lib/aws/record/validators/format.rb +57 -0
  387. data/lib/aws/record/validators/inclusion.rb +56 -0
  388. data/lib/aws/record/validators/length.rb +107 -0
  389. data/lib/aws/record/validators/method.rb +33 -0
  390. data/lib/aws/record/validators/numericality.rb +138 -0
  391. data/lib/aws/record/validators/presence.rb +45 -0
  392. data/lib/aws/redshift.rb +52 -0
  393. data/lib/aws/redshift/client.rb +1291 -0
  394. data/lib/aws/redshift/config.rb +18 -0
  395. data/lib/aws/redshift/errors.rb +22 -0
  396. data/lib/aws/redshift/request.rb +29 -0
  397. data/lib/aws/route_53.rb +87 -0
  398. data/lib/aws/route_53/change_batch.rb +159 -0
  399. data/lib/aws/route_53/change_info.rb +72 -0
  400. data/lib/aws/route_53/client.rb +387 -0
  401. data/lib/aws/route_53/config.rb +18 -0
  402. data/lib/aws/route_53/errors.rb +22 -0
  403. data/lib/aws/route_53/hosted_zone.rb +111 -0
  404. data/lib/aws/route_53/hosted_zone_collection.rb +100 -0
  405. data/lib/aws/route_53/request.rb +23 -0
  406. data/lib/aws/route_53/resource_record_set.rb +237 -0
  407. data/lib/aws/route_53/resource_record_set_collection.rb +110 -0
  408. data/lib/aws/s3.rb +155 -0
  409. data/lib/aws/s3/access_control_list.rb +257 -0
  410. data/lib/aws/s3/acl_object.rb +264 -0
  411. data/lib/aws/s3/acl_options.rb +204 -0
  412. data/lib/aws/s3/bucket.rb +742 -0
  413. data/lib/aws/s3/bucket_collection.rb +160 -0
  414. data/lib/aws/s3/bucket_lifecycle_configuration.rb +458 -0
  415. data/lib/aws/s3/bucket_tag_collection.rb +109 -0
  416. data/lib/aws/s3/bucket_version_collection.rb +77 -0
  417. data/lib/aws/s3/cipher_io.rb +119 -0
  418. data/lib/aws/s3/client.rb +1700 -0
  419. data/lib/aws/s3/client/xml.rb +231 -0
  420. data/lib/aws/s3/config.rb +36 -0
  421. data/lib/aws/s3/cors_rule.rb +106 -0
  422. data/lib/aws/s3/cors_rule_collection.rb +192 -0
  423. data/lib/aws/s3/data_options.rb +185 -0
  424. data/lib/aws/s3/encryption_utils.rb +139 -0
  425. data/lib/aws/s3/errors.rb +94 -0
  426. data/lib/aws/s3/multipart_upload.rb +320 -0
  427. data/lib/aws/s3/multipart_upload_collection.rb +68 -0
  428. data/lib/aws/s3/object_collection.rb +355 -0
  429. data/lib/aws/s3/object_metadata.rb +96 -0
  430. data/lib/aws/s3/object_upload_collection.rb +77 -0
  431. data/lib/aws/s3/object_version.rb +148 -0
  432. data/lib/aws/s3/object_version_collection.rb +89 -0
  433. data/lib/aws/s3/paginated_collection.rb +75 -0
  434. data/lib/aws/s3/policy.rb +74 -0
  435. data/lib/aws/s3/prefix_and_delimiter_collection.rb +47 -0
  436. data/lib/aws/s3/prefixed_collection.rb +81 -0
  437. data/lib/aws/s3/presigned_post.rb +555 -0
  438. data/lib/aws/s3/request.rb +201 -0
  439. data/lib/aws/s3/s3_object.rb +1690 -0
  440. data/lib/aws/s3/tree.rb +118 -0
  441. data/lib/aws/s3/tree/branch_node.rb +68 -0
  442. data/lib/aws/s3/tree/child_collection.rb +104 -0
  443. data/lib/aws/s3/tree/leaf_node.rb +94 -0
  444. data/lib/aws/s3/tree/node.rb +22 -0
  445. data/lib/aws/s3/tree/parent.rb +87 -0
  446. data/lib/aws/s3/uploaded_part.rb +80 -0
  447. data/lib/aws/s3/uploaded_part_collection.rb +84 -0
  448. data/lib/aws/s3/website_configuration.rb +102 -0
  449. data/lib/aws/simple_db.rb +219 -0
  450. data/lib/aws/simple_db/attribute.rb +154 -0
  451. data/lib/aws/simple_db/attribute_collection.rb +231 -0
  452. data/lib/aws/simple_db/client.rb +287 -0
  453. data/lib/aws/simple_db/config.rb +20 -0
  454. data/lib/aws/simple_db/consistent_read_option.rb +42 -0
  455. data/lib/aws/simple_db/delete_attributes.rb +62 -0
  456. data/lib/aws/simple_db/domain.rb +121 -0
  457. data/lib/aws/simple_db/domain_collection.rb +86 -0
  458. data/lib/aws/simple_db/domain_metadata.rb +110 -0
  459. data/lib/aws/simple_db/errors.rb +55 -0
  460. data/lib/aws/simple_db/expect_condition_option.rb +45 -0
  461. data/lib/aws/simple_db/item.rb +93 -0
  462. data/lib/aws/simple_db/item_collection.rb +649 -0
  463. data/lib/aws/simple_db/item_data.rb +73 -0
  464. data/lib/aws/simple_db/put_attributes.rb +60 -0
  465. data/lib/aws/simple_db/request.rb +23 -0
  466. data/lib/aws/simple_email_service.rb +428 -0
  467. data/lib/aws/simple_email_service/client.rb +276 -0
  468. data/lib/aws/simple_email_service/config.rb +19 -0
  469. data/lib/aws/simple_email_service/email_address_collection.rb +69 -0
  470. data/lib/aws/simple_email_service/errors.rb +22 -0
  471. data/lib/aws/simple_email_service/identity.rb +209 -0
  472. data/lib/aws/simple_email_service/identity_collection.rb +81 -0
  473. data/lib/aws/simple_email_service/quotas.rb +64 -0
  474. data/lib/aws/simple_email_service/request.rb +27 -0
  475. data/lib/aws/simple_workflow.rb +228 -0
  476. data/lib/aws/simple_workflow/activity_task.rb +173 -0
  477. data/lib/aws/simple_workflow/activity_task_collection.rb +123 -0
  478. data/lib/aws/simple_workflow/activity_type.rb +131 -0
  479. data/lib/aws/simple_workflow/activity_type_collection.rb +93 -0
  480. data/lib/aws/simple_workflow/client.rb +1204 -0
  481. data/lib/aws/simple_workflow/config.rb +18 -0
  482. data/lib/aws/simple_workflow/count.rb +49 -0
  483. data/lib/aws/simple_workflow/decision_task.rb +603 -0
  484. data/lib/aws/simple_workflow/decision_task_collection.rb +225 -0
  485. data/lib/aws/simple_workflow/domain.rb +122 -0
  486. data/lib/aws/simple_workflow/domain_collection.rb +169 -0
  487. data/lib/aws/simple_workflow/errors.rb +20 -0
  488. data/lib/aws/simple_workflow/history_event.rb +276 -0
  489. data/lib/aws/simple_workflow/history_event_collection.rb +76 -0
  490. data/lib/aws/simple_workflow/option_formatters.rb +82 -0
  491. data/lib/aws/simple_workflow/request.rb +33 -0
  492. data/lib/aws/simple_workflow/resource.rb +94 -0
  493. data/lib/aws/simple_workflow/type.rb +89 -0
  494. data/lib/aws/simple_workflow/type_collection.rb +140 -0
  495. data/lib/aws/simple_workflow/workflow_execution.rb +386 -0
  496. data/lib/aws/simple_workflow/workflow_execution_collection.rb +617 -0
  497. data/lib/aws/simple_workflow/workflow_type.rb +177 -0
  498. data/lib/aws/simple_workflow/workflow_type_collection.rb +91 -0
  499. data/lib/aws/sns.rb +76 -0
  500. data/lib/aws/sns/client.rb +266 -0
  501. data/lib/aws/sns/config.rb +18 -0
  502. data/lib/aws/sns/errors.rb +22 -0
  503. data/lib/aws/sns/has_delivery_policy.rb +68 -0
  504. data/lib/aws/sns/policy.rb +47 -0
  505. data/lib/aws/sns/request.rb +23 -0
  506. data/lib/aws/sns/subscription.rb +144 -0
  507. data/lib/aws/sns/subscription_collection.rb +78 -0
  508. data/lib/aws/sns/topic.rb +403 -0
  509. data/lib/aws/sns/topic_collection.rb +62 -0
  510. data/lib/aws/sns/topic_subscription_collection.rb +54 -0
  511. data/lib/aws/sqs.rb +81 -0
  512. data/lib/aws/sqs/client.rb +258 -0
  513. data/lib/aws/sqs/config.rb +18 -0
  514. data/lib/aws/sqs/errors.rb +101 -0
  515. data/lib/aws/sqs/policy.rb +48 -0
  516. data/lib/aws/sqs/queue.rb +764 -0
  517. data/lib/aws/sqs/queue_collection.rb +174 -0
  518. data/lib/aws/sqs/received_message.rb +181 -0
  519. data/lib/aws/sqs/received_sns_message.rb +116 -0
  520. data/lib/aws/sqs/request.rb +67 -0
  521. data/lib/aws/storage_gateway.rb +73 -0
  522. data/lib/aws/storage_gateway/client.rb +472 -0
  523. data/lib/aws/storage_gateway/config.rb +18 -0
  524. data/lib/aws/storage_gateway/errors.rb +22 -0
  525. data/lib/aws/storage_gateway/request.rb +28 -0
  526. data/lib/aws/sts.rb +163 -0
  527. data/lib/aws/sts/client.rb +157 -0
  528. data/lib/aws/sts/config.rb +18 -0
  529. data/lib/aws/sts/errors.rb +22 -0
  530. data/lib/aws/sts/federated_session.rb +56 -0
  531. data/lib/aws/sts/policy.rb +30 -0
  532. data/lib/aws/sts/request.rb +29 -0
  533. data/lib/aws/sts/session.rb +48 -0
  534. data/lib/aws/version.rb +18 -0
  535. data/lib/net/http/connection_pool.rb +226 -0
  536. data/lib/net/http/connection_pool/connection.rb +189 -0
  537. data/lib/net/http/connection_pool/session.rb +126 -0
  538. data/rails/init.rb +15 -0
  539. metadata +632 -0
@@ -0,0 +1,109 @@
1
+ # Copyright 2011-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License"). You
4
+ # may not use this file except in compliance with the License. A copy of
5
+ # the License is located at
6
+ #
7
+ # http://aws.amazon.com/apache2.0/
8
+ #
9
+ # or in the "license" file accompanying this file. This file is
10
+ # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
11
+ # ANY KIND, either express or implied. See the License for the specific
12
+ # language governing permissions and limitations under the License.
13
+
14
+ ---
15
+ :api_version: '2010-06-01'
16
+ :operations:
17
+ - :name: CancelJob
18
+ :method: :cancel_job
19
+ :inputs:
20
+ JobId:
21
+ - :string
22
+ - :required
23
+ :outputs:
24
+ :children:
25
+ CancelJobResult:
26
+ :ignore: true
27
+ :children:
28
+ Success:
29
+ :type: :boolean
30
+ - :name: CreateJob
31
+ :method: :create_job
32
+ :inputs:
33
+ JobType:
34
+ - :string
35
+ - :required
36
+ Manifest:
37
+ - :string
38
+ - :required
39
+ ManifestAddendum:
40
+ - :string
41
+ ValidateOnly:
42
+ - :boolean
43
+ - :required
44
+ :outputs:
45
+ :children:
46
+ CreateJobResult:
47
+ :ignore: true
48
+ - :name: GetStatus
49
+ :method: :get_status
50
+ :inputs:
51
+ JobId:
52
+ - :string
53
+ - :required
54
+ :outputs:
55
+ :children:
56
+ GetStatusResult:
57
+ :ignore: true
58
+ :children:
59
+ ErrorCount:
60
+ :type: :integer
61
+ CreationDate:
62
+ :type: :time
63
+ - :name: ListJobs
64
+ :method: :list_jobs
65
+ :inputs:
66
+ MaxJobs:
67
+ - :integer
68
+ Marker:
69
+ - :string
70
+ :outputs:
71
+ :children:
72
+ ListJobsResult:
73
+ :ignore: true
74
+ :children:
75
+ Jobs:
76
+ :ignore: true
77
+ :children:
78
+ member:
79
+ :rename: :jobs
80
+ :list: true
81
+ :children:
82
+ CreationDate:
83
+ :type: :time
84
+ IsCanceled:
85
+ :type: :boolean
86
+ IsTruncated:
87
+ :type: :boolean
88
+ - :name: UpdateJob
89
+ :method: :update_job
90
+ :inputs:
91
+ JobId:
92
+ - :string
93
+ - :required
94
+ Manifest:
95
+ - :string
96
+ - :required
97
+ JobType:
98
+ - :string
99
+ - :required
100
+ ValidateOnly:
101
+ - :boolean
102
+ - :required
103
+ :outputs:
104
+ :children:
105
+ UpdateJobResult:
106
+ :ignore: true
107
+ :children:
108
+ Success:
109
+ :type: :boolean
@@ -0,0 +1,1463 @@
1
+ # Copyright 2011-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License"). You
4
+ # may not use this file except in compliance with the License. A copy of
5
+ # the License is located at
6
+ #
7
+ # http://aws.amazon.com/apache2.0/
8
+ #
9
+ # or in the "license" file accompanying this file. This file is
10
+ # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
11
+ # ANY KIND, either express or implied. See the License for the specific
12
+ # language governing permissions and limitations under the License.
13
+
14
+ ---
15
+ :json_version: '1.1'
16
+ :target_prefix: OpsWorks_20130218.
17
+ :api_version: '2013-02-18'
18
+ :operations:
19
+ - :name: CloneStack
20
+ :method: :clone_stack
21
+ :inputs:
22
+ SourceStackId:
23
+ - :string
24
+ - :required
25
+ Name:
26
+ - :string
27
+ Region:
28
+ - :string
29
+ Attributes:
30
+ - :map:
31
+ :key:
32
+ - :string
33
+ :value:
34
+ - :string
35
+ ServiceRoleArn:
36
+ - :string
37
+ - :required
38
+ DefaultInstanceProfileArn:
39
+ - :string
40
+ DefaultOs:
41
+ - :string
42
+ HostnameTheme:
43
+ - :string
44
+ DefaultAvailabilityZone:
45
+ - :string
46
+ CustomJson:
47
+ - :string
48
+ UseCustomCookbooks:
49
+ - :boolean
50
+ CustomCookbooksSource:
51
+ - :structure:
52
+ Type:
53
+ - :string
54
+ Url:
55
+ - :string
56
+ Username:
57
+ - :string
58
+ Password:
59
+ - :string
60
+ SshKey:
61
+ - :string
62
+ Revision:
63
+ - :string
64
+ DefaultSshKeyName:
65
+ - :string
66
+ ClonePermissions:
67
+ - :boolean
68
+ CloneAppIds:
69
+ - :list:
70
+ - :string
71
+ :outputs:
72
+ StackId:
73
+ :sym: :stack_id
74
+ :type: :string
75
+ - :name: CreateApp
76
+ :method: :create_app
77
+ :inputs:
78
+ StackId:
79
+ - :string
80
+ - :required
81
+ Name:
82
+ - :string
83
+ - :required
84
+ Description:
85
+ - :string
86
+ Type:
87
+ - :string
88
+ - :required
89
+ AppSource:
90
+ - :structure:
91
+ Type:
92
+ - :string
93
+ Url:
94
+ - :string
95
+ Username:
96
+ - :string
97
+ Password:
98
+ - :string
99
+ SshKey:
100
+ - :string
101
+ Revision:
102
+ - :string
103
+ Domains:
104
+ - :list:
105
+ - :string
106
+ EnableSsl:
107
+ - :boolean
108
+ SslConfiguration:
109
+ - :structure:
110
+ Certificate:
111
+ - :string
112
+ - :required
113
+ PrivateKey:
114
+ - :string
115
+ - :required
116
+ Chain:
117
+ - :string
118
+ Attributes:
119
+ - :map:
120
+ :key:
121
+ - :string
122
+ :value:
123
+ - :string
124
+ :outputs:
125
+ AppId:
126
+ :sym: :app_id
127
+ :type: :string
128
+ - :name: CreateDeployment
129
+ :method: :create_deployment
130
+ :inputs:
131
+ StackId:
132
+ - :string
133
+ - :required
134
+ AppId:
135
+ - :string
136
+ InstanceIds:
137
+ - :list:
138
+ - :string
139
+ Command:
140
+ - :structure:
141
+ Name:
142
+ - :string
143
+ - :required
144
+ Args:
145
+ - :map:
146
+ :key:
147
+ - :string
148
+ :value:
149
+ - :list:
150
+ - :string
151
+ - :required
152
+ Comment:
153
+ - :string
154
+ CustomJson:
155
+ - :string
156
+ :outputs:
157
+ DeploymentId:
158
+ :sym: :deployment_id
159
+ :type: :string
160
+ - :name: CreateInstance
161
+ :method: :create_instance
162
+ :inputs:
163
+ StackId:
164
+ - :string
165
+ - :required
166
+ LayerIds:
167
+ - :list:
168
+ - :string
169
+ - :required
170
+ InstanceType:
171
+ - :string
172
+ - :required
173
+ AutoScalingType:
174
+ - :string
175
+ Hostname:
176
+ - :string
177
+ Os:
178
+ - :string
179
+ SshKeyName:
180
+ - :string
181
+ AvailabilityZone:
182
+ - :string
183
+ :outputs:
184
+ InstanceId:
185
+ :sym: :instance_id
186
+ :type: :string
187
+ - :name: CreateLayer
188
+ :method: :create_layer
189
+ :inputs:
190
+ StackId:
191
+ - :string
192
+ - :required
193
+ Type:
194
+ - :string
195
+ - :required
196
+ Name:
197
+ - :string
198
+ - :required
199
+ Shortname:
200
+ - :string
201
+ - :required
202
+ Attributes:
203
+ - :map:
204
+ :key:
205
+ - :string
206
+ :value:
207
+ - :string
208
+ CustomInstanceProfileArn:
209
+ - :string
210
+ CustomSecurityGroupIds:
211
+ - :list:
212
+ - :string
213
+ Packages:
214
+ - :list:
215
+ - :string
216
+ VolumeConfigurations:
217
+ - :list:
218
+ - :structure:
219
+ MountPoint:
220
+ - :string
221
+ - :required
222
+ RaidLevel:
223
+ - :integer
224
+ NumberOfDisks:
225
+ - :integer
226
+ - :required
227
+ Size:
228
+ - :integer
229
+ - :required
230
+ EnableAutoHealing:
231
+ - :boolean
232
+ AutoAssignElasticIps:
233
+ - :boolean
234
+ CustomRecipes:
235
+ - :structure:
236
+ Setup:
237
+ - :list:
238
+ - :string
239
+ Configure:
240
+ - :list:
241
+ - :string
242
+ Deploy:
243
+ - :list:
244
+ - :string
245
+ Undeploy:
246
+ - :list:
247
+ - :string
248
+ Shutdown:
249
+ - :list:
250
+ - :string
251
+ :outputs:
252
+ LayerId:
253
+ :sym: :layer_id
254
+ :type: :string
255
+ - :name: CreateStack
256
+ :method: :create_stack
257
+ :inputs:
258
+ Name:
259
+ - :string
260
+ - :required
261
+ Region:
262
+ - :string
263
+ - :required
264
+ Attributes:
265
+ - :map:
266
+ :key:
267
+ - :string
268
+ :value:
269
+ - :string
270
+ ServiceRoleArn:
271
+ - :string
272
+ - :required
273
+ DefaultInstanceProfileArn:
274
+ - :string
275
+ - :required
276
+ DefaultOs:
277
+ - :string
278
+ HostnameTheme:
279
+ - :string
280
+ DefaultAvailabilityZone:
281
+ - :string
282
+ CustomJson:
283
+ - :string
284
+ UseCustomCookbooks:
285
+ - :boolean
286
+ CustomCookbooksSource:
287
+ - :structure:
288
+ Type:
289
+ - :string
290
+ Url:
291
+ - :string
292
+ Username:
293
+ - :string
294
+ Password:
295
+ - :string
296
+ SshKey:
297
+ - :string
298
+ Revision:
299
+ - :string
300
+ DefaultSshKeyName:
301
+ - :string
302
+ :outputs:
303
+ StackId:
304
+ :sym: :stack_id
305
+ :type: :string
306
+ - :name: CreateUserProfile
307
+ :method: :create_user_profile
308
+ :inputs:
309
+ IamUserArn:
310
+ - :string
311
+ - :required
312
+ SshUsername:
313
+ - :string
314
+ SshPublicKey:
315
+ - :string
316
+ :outputs:
317
+ IamUserArn:
318
+ :sym: :iam_user_arn
319
+ :type: :string
320
+ - :name: DeleteApp
321
+ :method: :delete_app
322
+ :inputs:
323
+ AppId:
324
+ - :string
325
+ - :required
326
+ :outputs: {}
327
+ - :name: DeleteInstance
328
+ :method: :delete_instance
329
+ :inputs:
330
+ InstanceId:
331
+ - :string
332
+ - :required
333
+ DeleteElasticIp:
334
+ - :boolean
335
+ DeleteVolumes:
336
+ - :boolean
337
+ :outputs: {}
338
+ - :name: DeleteLayer
339
+ :method: :delete_layer
340
+ :inputs:
341
+ LayerId:
342
+ - :string
343
+ - :required
344
+ :outputs: {}
345
+ - :name: DeleteStack
346
+ :method: :delete_stack
347
+ :inputs:
348
+ StackId:
349
+ - :string
350
+ - :required
351
+ :outputs: {}
352
+ - :name: DeleteUserProfile
353
+ :method: :delete_user_profile
354
+ :inputs:
355
+ IamUserArn:
356
+ - :string
357
+ - :required
358
+ :outputs: {}
359
+ - :name: DescribeApps
360
+ :method: :describe_apps
361
+ :inputs:
362
+ StackId:
363
+ - :string
364
+ AppIds:
365
+ - :list:
366
+ - :string
367
+ :outputs:
368
+ Apps:
369
+ :sym: :apps
370
+ :type: :hash
371
+ :members:
372
+ AppId:
373
+ :sym: :app_id
374
+ :type: :string
375
+ StackId:
376
+ :sym: :stack_id
377
+ :type: :string
378
+ Name:
379
+ :sym: :name
380
+ :type: :string
381
+ Description:
382
+ :sym: :description
383
+ :type: :string
384
+ Type:
385
+ :sym: :type
386
+ :type: :string
387
+ AppSource:
388
+ :sym: :app_source
389
+ :type: :hash
390
+ :members:
391
+ Type:
392
+ :sym: :type
393
+ :type: :string
394
+ Url:
395
+ :sym: :url
396
+ :type: :string
397
+ Username:
398
+ :sym: :username
399
+ :type: :string
400
+ Password:
401
+ :sym: :password
402
+ :type: :string
403
+ SshKey:
404
+ :sym: :ssh_key
405
+ :type: :string
406
+ Revision:
407
+ :sym: :revision
408
+ :type: :string
409
+ Domains:
410
+ :sym: :domains
411
+ :type: :string
412
+ EnableSsl:
413
+ :sym: :enable_ssl
414
+ :type: :boolean
415
+ SslConfiguration:
416
+ :sym: :ssl_configuration
417
+ :type: :hash
418
+ :members:
419
+ Certificate:
420
+ :sym: :certificate
421
+ :type: :string
422
+ PrivateKey:
423
+ :sym: :private_key
424
+ :type: :string
425
+ Chain:
426
+ :sym: :chain
427
+ :type: :string
428
+ Attributes:
429
+ :sym: :attributes
430
+ :type: :map
431
+ :members:
432
+ :sym: :map_value
433
+ :type: :string
434
+ CreatedAt:
435
+ :sym: :created_at
436
+ :type: :string
437
+ - :name: DescribeCommands
438
+ :method: :describe_commands
439
+ :inputs:
440
+ DeploymentId:
441
+ - :string
442
+ InstanceId:
443
+ - :string
444
+ CommandIds:
445
+ - :list:
446
+ - :string
447
+ :outputs:
448
+ Commands:
449
+ :sym: :commands
450
+ :type: :hash
451
+ :members:
452
+ CommandId:
453
+ :sym: :command_id
454
+ :type: :string
455
+ InstanceId:
456
+ :sym: :instance_id
457
+ :type: :string
458
+ DeploymentId:
459
+ :sym: :deployment_id
460
+ :type: :string
461
+ CreatedAt:
462
+ :sym: :created_at
463
+ :type: :string
464
+ AcknowledgedAt:
465
+ :sym: :acknowledged_at
466
+ :type: :string
467
+ CompletedAt:
468
+ :sym: :completed_at
469
+ :type: :string
470
+ Status:
471
+ :sym: :status
472
+ :type: :string
473
+ ExitCode:
474
+ :sym: :exit_code
475
+ :type: :integer
476
+ LogUrl:
477
+ :sym: :log_url
478
+ :type: :string
479
+ Type:
480
+ :sym: :type
481
+ :type: :string
482
+ - :name: DescribeDeployments
483
+ :method: :describe_deployments
484
+ :inputs:
485
+ StackId:
486
+ - :string
487
+ AppId:
488
+ - :string
489
+ DeploymentIds:
490
+ - :list:
491
+ - :string
492
+ :outputs:
493
+ Deployments:
494
+ :sym: :deployments
495
+ :type: :hash
496
+ :members:
497
+ DeploymentId:
498
+ :sym: :deployment_id
499
+ :type: :string
500
+ StackId:
501
+ :sym: :stack_id
502
+ :type: :string
503
+ AppId:
504
+ :sym: :app_id
505
+ :type: :string
506
+ CreatedAt:
507
+ :sym: :created_at
508
+ :type: :string
509
+ CompletedAt:
510
+ :sym: :completed_at
511
+ :type: :string
512
+ Duration:
513
+ :sym: :duration
514
+ :type: :integer
515
+ IamUserArn:
516
+ :sym: :iam_user_arn
517
+ :type: :string
518
+ Comment:
519
+ :sym: :comment
520
+ :type: :string
521
+ Command:
522
+ :sym: :command
523
+ :type: :hash
524
+ :members:
525
+ Name:
526
+ :sym: :name
527
+ :type: :string
528
+ Args:
529
+ :sym: :args
530
+ :type: :map
531
+ :members:
532
+ :sym: :value
533
+ :type: :string
534
+ Status:
535
+ :sym: :status
536
+ :type: :string
537
+ CustomJson:
538
+ :sym: :custom_json
539
+ :type: :string
540
+ InstanceIds:
541
+ :sym: :instance_ids
542
+ :type: :string
543
+ - :name: DescribeElasticIps
544
+ :method: :describe_elastic_ips
545
+ :inputs:
546
+ InstanceId:
547
+ - :string
548
+ Ips:
549
+ - :list:
550
+ - :string
551
+ :outputs:
552
+ ElasticIps:
553
+ :sym: :elastic_ips
554
+ :type: :hash
555
+ :members:
556
+ Ip:
557
+ :sym: :ip
558
+ :type: :string
559
+ Name:
560
+ :sym: :name
561
+ :type: :string
562
+ Region:
563
+ :sym: :region
564
+ :type: :string
565
+ - :name: DescribeInstances
566
+ :method: :describe_instances
567
+ :inputs:
568
+ StackId:
569
+ - :string
570
+ LayerId:
571
+ - :string
572
+ AppId:
573
+ - :string
574
+ InstanceIds:
575
+ - :list:
576
+ - :string
577
+ :outputs:
578
+ Instances:
579
+ :sym: :instances
580
+ :type: :hash
581
+ :members:
582
+ InstanceId:
583
+ :sym: :instance_id
584
+ :type: :string
585
+ Ec2InstanceId:
586
+ :sym: :ec_2_instance_id
587
+ :type: :string
588
+ Hostname:
589
+ :sym: :hostname
590
+ :type: :string
591
+ StackId:
592
+ :sym: :stack_id
593
+ :type: :string
594
+ LayerIds:
595
+ :sym: :layer_ids
596
+ :type: :string
597
+ SecurityGroupIds:
598
+ :sym: :security_group_ids
599
+ :type: :string
600
+ InstanceType:
601
+ :sym: :instance_type
602
+ :type: :string
603
+ InstanceProfileArn:
604
+ :sym: :instance_profile_arn
605
+ :type: :string
606
+ Status:
607
+ :sym: :status
608
+ :type: :string
609
+ Os:
610
+ :sym: :os
611
+ :type: :string
612
+ AvailabilityZone:
613
+ :sym: :availability_zone
614
+ :type: :string
615
+ PublicDns:
616
+ :sym: :public_dns
617
+ :type: :string
618
+ PrivateDns:
619
+ :sym: :private_dns
620
+ :type: :string
621
+ PublicIp:
622
+ :sym: :public_ip
623
+ :type: :string
624
+ PrivateIp:
625
+ :sym: :private_ip
626
+ :type: :string
627
+ ElasticIp:
628
+ :sym: :elastic_ip
629
+ :type: :string
630
+ AutoScalingType:
631
+ :sym: :auto_scaling_type
632
+ :type: :string
633
+ SshKeyName:
634
+ :sym: :ssh_key_name
635
+ :type: :string
636
+ SshHostRsaKeyFingerprint:
637
+ :sym: :ssh_host_rsa_key_fingerprint
638
+ :type: :string
639
+ SshHostDsaKeyFingerprint:
640
+ :sym: :ssh_host_dsa_key_fingerprint
641
+ :type: :string
642
+ CreatedAt:
643
+ :sym: :created_at
644
+ :type: :string
645
+ LastServiceErrorId:
646
+ :sym: :last_service_error_id
647
+ :type: :string
648
+ - :name: DescribeLayers
649
+ :method: :describe_layers
650
+ :inputs:
651
+ StackId:
652
+ - :string
653
+ - :required
654
+ LayerIds:
655
+ - :list:
656
+ - :string
657
+ :outputs:
658
+ Layers:
659
+ :sym: :layers
660
+ :type: :hash
661
+ :members:
662
+ StackId:
663
+ :sym: :stack_id
664
+ :type: :string
665
+ LayerId:
666
+ :sym: :layer_id
667
+ :type: :string
668
+ Type:
669
+ :sym: :type
670
+ :type: :string
671
+ Name:
672
+ :sym: :name
673
+ :type: :string
674
+ Shortname:
675
+ :sym: :shortname
676
+ :type: :string
677
+ Attributes:
678
+ :sym: :attributes
679
+ :type: :map
680
+ :members:
681
+ :sym: :map_value
682
+ :type: :string
683
+ CustomInstanceProfileArn:
684
+ :sym: :custom_instance_profile_arn
685
+ :type: :string
686
+ CustomSecurityGroupIds:
687
+ :sym: :custom_security_group_ids
688
+ :type: :string
689
+ DefaultSecurityGroupNames:
690
+ :sym: :default_security_group_names
691
+ :type: :string
692
+ Packages:
693
+ :sym: :packages
694
+ :type: :string
695
+ VolumeConfigurations:
696
+ :sym: :volume_configurations
697
+ :type: :hash
698
+ :members:
699
+ MountPoint:
700
+ :sym: :mount_point
701
+ :type: :string
702
+ RaidLevel:
703
+ :sym: :raid_level
704
+ :type: :integer
705
+ NumberOfDisks:
706
+ :sym: :number_of_disks
707
+ :type: :integer
708
+ Size:
709
+ :sym: :size
710
+ :type: :integer
711
+ EnableAutoHealing:
712
+ :sym: :enable_auto_healing
713
+ :type: :boolean
714
+ AutoAssignElasticIps:
715
+ :sym: :auto_assign_elastic_ips
716
+ :type: :boolean
717
+ DefaultRecipes:
718
+ :sym: :default_recipes
719
+ :type: :hash
720
+ :members:
721
+ Setup:
722
+ :sym: :setup
723
+ :type: :string
724
+ Configure:
725
+ :sym: :configure
726
+ :type: :string
727
+ Deploy:
728
+ :sym: :deploy
729
+ :type: :string
730
+ Undeploy:
731
+ :sym: :undeploy
732
+ :type: :string
733
+ Shutdown:
734
+ :sym: :shutdown
735
+ :type: :string
736
+ CustomRecipes:
737
+ :sym: :custom_recipes
738
+ :type: :hash
739
+ :members:
740
+ Setup:
741
+ :sym: :setup
742
+ :type: :string
743
+ Configure:
744
+ :sym: :configure
745
+ :type: :string
746
+ Deploy:
747
+ :sym: :deploy
748
+ :type: :string
749
+ Undeploy:
750
+ :sym: :undeploy
751
+ :type: :string
752
+ Shutdown:
753
+ :sym: :shutdown
754
+ :type: :string
755
+ CreatedAt:
756
+ :sym: :created_at
757
+ :type: :string
758
+ - :name: DescribeLoadBasedAutoScaling
759
+ :method: :describe_load_based_auto_scaling
760
+ :inputs:
761
+ LayerIds:
762
+ - :list:
763
+ - :string
764
+ - :required
765
+ :outputs:
766
+ LoadBasedAutoScalingConfigurations:
767
+ :sym: :load_based_auto_scaling_configurations
768
+ :type: :hash
769
+ :members:
770
+ LayerId:
771
+ :sym: :layer_id
772
+ :type: :string
773
+ Enable:
774
+ :sym: :enable
775
+ :type: :boolean
776
+ UpScaling:
777
+ :sym: :up_scaling
778
+ :type: :hash
779
+ :members:
780
+ InstanceCount:
781
+ :sym: :instance_count
782
+ :type: :integer
783
+ ThresholdsWaitTime:
784
+ :sym: :thresholds_wait_time
785
+ :type: :integer
786
+ IgnoreMetricsTime:
787
+ :sym: :ignore_metrics_time
788
+ :type: :integer
789
+ CpuThreshold:
790
+ :sym: :cpu_threshold
791
+ :type: :float
792
+ MemoryThreshold:
793
+ :sym: :memory_threshold
794
+ :type: :float
795
+ LoadThreshold:
796
+ :sym: :load_threshold
797
+ :type: :float
798
+ DownScaling:
799
+ :sym: :down_scaling
800
+ :type: :hash
801
+ :members:
802
+ InstanceCount:
803
+ :sym: :instance_count
804
+ :type: :integer
805
+ ThresholdsWaitTime:
806
+ :sym: :thresholds_wait_time
807
+ :type: :integer
808
+ IgnoreMetricsTime:
809
+ :sym: :ignore_metrics_time
810
+ :type: :integer
811
+ CpuThreshold:
812
+ :sym: :cpu_threshold
813
+ :type: :float
814
+ MemoryThreshold:
815
+ :sym: :memory_threshold
816
+ :type: :float
817
+ LoadThreshold:
818
+ :sym: :load_threshold
819
+ :type: :float
820
+ - :name: DescribePermissions
821
+ :method: :describe_permissions
822
+ :inputs:
823
+ IamUserArn:
824
+ - :string
825
+ - :required
826
+ StackId:
827
+ - :string
828
+ - :required
829
+ :outputs:
830
+ Permissions:
831
+ :sym: :permissions
832
+ :type: :hash
833
+ :members:
834
+ StackId:
835
+ :sym: :stack_id
836
+ :type: :string
837
+ IamUserArn:
838
+ :sym: :iam_user_arn
839
+ :type: :string
840
+ AllowSsh:
841
+ :sym: :allow_ssh
842
+ :type: :boolean
843
+ AllowSudo:
844
+ :sym: :allow_sudo
845
+ :type: :boolean
846
+ - :name: DescribeRaidArrays
847
+ :method: :describe_raid_arrays
848
+ :inputs:
849
+ InstanceId:
850
+ - :string
851
+ RaidArrayIds:
852
+ - :list:
853
+ - :string
854
+ :outputs:
855
+ RaidArrays:
856
+ :sym: :raid_arrays
857
+ :type: :hash
858
+ :members:
859
+ RaidArrayId:
860
+ :sym: :raid_array_id
861
+ :type: :string
862
+ InstanceId:
863
+ :sym: :instance_id
864
+ :type: :string
865
+ Name:
866
+ :sym: :name
867
+ :type: :string
868
+ RaidLevel:
869
+ :sym: :raid_level
870
+ :type: :integer
871
+ NumberOfDisks:
872
+ :sym: :number_of_disks
873
+ :type: :integer
874
+ Size:
875
+ :sym: :size
876
+ :type: :integer
877
+ Device:
878
+ :sym: :device
879
+ :type: :string
880
+ MountPoint:
881
+ :sym: :mount_point
882
+ :type: :string
883
+ AvailabilityZone:
884
+ :sym: :availability_zone
885
+ :type: :string
886
+ CreatedAt:
887
+ :sym: :created_at
888
+ :type: :string
889
+ - :name: DescribeServiceErrors
890
+ :method: :describe_service_errors
891
+ :inputs:
892
+ StackId:
893
+ - :string
894
+ InstanceId:
895
+ - :string
896
+ ServiceErrorIds:
897
+ - :list:
898
+ - :string
899
+ :outputs:
900
+ ServiceErrors:
901
+ :sym: :service_errors
902
+ :type: :hash
903
+ :members:
904
+ ServiceErrorId:
905
+ :sym: :service_error_id
906
+ :type: :string
907
+ StackId:
908
+ :sym: :stack_id
909
+ :type: :string
910
+ InstanceId:
911
+ :sym: :instance_id
912
+ :type: :string
913
+ Type:
914
+ :sym: :type
915
+ :type: :string
916
+ Message:
917
+ :sym: :message
918
+ :type: :string
919
+ CreatedAt:
920
+ :sym: :created_at
921
+ :type: :string
922
+ - :name: DescribeStacks
923
+ :method: :describe_stacks
924
+ :inputs:
925
+ StackIds:
926
+ - :list:
927
+ - :string
928
+ :outputs:
929
+ Stacks:
930
+ :sym: :stacks
931
+ :type: :hash
932
+ :members:
933
+ StackId:
934
+ :sym: :stack_id
935
+ :type: :string
936
+ Name:
937
+ :sym: :name
938
+ :type: :string
939
+ Region:
940
+ :sym: :region
941
+ :type: :string
942
+ Attributes:
943
+ :sym: :attributes
944
+ :type: :map
945
+ :members:
946
+ :sym: :map_value
947
+ :type: :string
948
+ ServiceRoleArn:
949
+ :sym: :service_role_arn
950
+ :type: :string
951
+ DefaultInstanceProfileArn:
952
+ :sym: :default_instance_profile_arn
953
+ :type: :string
954
+ DefaultOs:
955
+ :sym: :default_os
956
+ :type: :string
957
+ HostnameTheme:
958
+ :sym: :hostname_theme
959
+ :type: :string
960
+ DefaultAvailabilityZone:
961
+ :sym: :default_availability_zone
962
+ :type: :string
963
+ CustomJson:
964
+ :sym: :custom_json
965
+ :type: :string
966
+ UseCustomCookbooks:
967
+ :sym: :use_custom_cookbooks
968
+ :type: :boolean
969
+ CustomCookbooksSource:
970
+ :sym: :custom_cookbooks_source
971
+ :type: :hash
972
+ :members:
973
+ Type:
974
+ :sym: :type
975
+ :type: :string
976
+ Url:
977
+ :sym: :url
978
+ :type: :string
979
+ Username:
980
+ :sym: :username
981
+ :type: :string
982
+ Password:
983
+ :sym: :password
984
+ :type: :string
985
+ SshKey:
986
+ :sym: :ssh_key
987
+ :type: :string
988
+ Revision:
989
+ :sym: :revision
990
+ :type: :string
991
+ DefaultSshKeyName:
992
+ :sym: :default_ssh_key_name
993
+ :type: :string
994
+ CreatedAt:
995
+ :sym: :created_at
996
+ :type: :string
997
+ - :name: DescribeTimeBasedAutoScaling
998
+ :method: :describe_time_based_auto_scaling
999
+ :inputs:
1000
+ InstanceIds:
1001
+ - :list:
1002
+ - :string
1003
+ - :required
1004
+ :outputs:
1005
+ TimeBasedAutoScalingConfigurations:
1006
+ :sym: :time_based_auto_scaling_configurations
1007
+ :type: :hash
1008
+ :members:
1009
+ InstanceId:
1010
+ :sym: :instance_id
1011
+ :type: :string
1012
+ AutoScalingSchedule:
1013
+ :sym: :auto_scaling_schedule
1014
+ :type: :hash
1015
+ :members:
1016
+ Monday:
1017
+ :sym: :monday
1018
+ :type: :map
1019
+ :members:
1020
+ :sym: :map_value
1021
+ :type: :string
1022
+ Tuesday:
1023
+ :sym: :tuesday
1024
+ :type: :map
1025
+ :members:
1026
+ :sym: :map_value
1027
+ :type: :string
1028
+ Wednesday:
1029
+ :sym: :wednesday
1030
+ :type: :map
1031
+ :members:
1032
+ :sym: :map_value
1033
+ :type: :string
1034
+ Thursday:
1035
+ :sym: :thursday
1036
+ :type: :map
1037
+ :members:
1038
+ :sym: :map_value
1039
+ :type: :string
1040
+ Friday:
1041
+ :sym: :friday
1042
+ :type: :map
1043
+ :members:
1044
+ :sym: :map_value
1045
+ :type: :string
1046
+ Saturday:
1047
+ :sym: :saturday
1048
+ :type: :map
1049
+ :members:
1050
+ :sym: :map_value
1051
+ :type: :string
1052
+ Sunday:
1053
+ :sym: :sunday
1054
+ :type: :map
1055
+ :members:
1056
+ :sym: :map_value
1057
+ :type: :string
1058
+ - :name: DescribeUserProfiles
1059
+ :method: :describe_user_profiles
1060
+ :inputs:
1061
+ IamUserArns:
1062
+ - :list:
1063
+ - :string
1064
+ - :required
1065
+ :outputs:
1066
+ UserProfiles:
1067
+ :sym: :user_profiles
1068
+ :type: :hash
1069
+ :members:
1070
+ IamUserArn:
1071
+ :sym: :iam_user_arn
1072
+ :type: :string
1073
+ Name:
1074
+ :sym: :name
1075
+ :type: :string
1076
+ SshUsername:
1077
+ :sym: :ssh_username
1078
+ :type: :string
1079
+ SshPublicKey:
1080
+ :sym: :ssh_public_key
1081
+ :type: :string
1082
+ - :name: DescribeVolumes
1083
+ :method: :describe_volumes
1084
+ :inputs:
1085
+ InstanceId:
1086
+ - :string
1087
+ RaidArrayId:
1088
+ - :string
1089
+ VolumeIds:
1090
+ - :list:
1091
+ - :string
1092
+ :outputs:
1093
+ Volumes:
1094
+ :sym: :volumes
1095
+ :type: :hash
1096
+ :members:
1097
+ VolumeId:
1098
+ :sym: :volume_id
1099
+ :type: :string
1100
+ Ec2VolumeId:
1101
+ :sym: :ec_2_volume_id
1102
+ :type: :string
1103
+ Name:
1104
+ :sym: :name
1105
+ :type: :string
1106
+ RaidArrayId:
1107
+ :sym: :raid_array_id
1108
+ :type: :string
1109
+ InstanceId:
1110
+ :sym: :instance_id
1111
+ :type: :string
1112
+ Status:
1113
+ :sym: :status
1114
+ :type: :string
1115
+ Size:
1116
+ :sym: :size
1117
+ :type: :integer
1118
+ Device:
1119
+ :sym: :device
1120
+ :type: :string
1121
+ MountPoint:
1122
+ :sym: :mount_point
1123
+ :type: :string
1124
+ Region:
1125
+ :sym: :region
1126
+ :type: :string
1127
+ AvailabilityZone:
1128
+ :sym: :availability_zone
1129
+ :type: :string
1130
+ - :name: GetHostnameSuggestion
1131
+ :method: :get_hostname_suggestion
1132
+ :inputs:
1133
+ LayerId:
1134
+ - :string
1135
+ - :required
1136
+ :outputs:
1137
+ LayerId:
1138
+ :sym: :layer_id
1139
+ :type: :string
1140
+ Hostname:
1141
+ :sym: :hostname
1142
+ :type: :string
1143
+ - :name: RebootInstance
1144
+ :method: :reboot_instance
1145
+ :inputs:
1146
+ InstanceId:
1147
+ - :string
1148
+ - :required
1149
+ :outputs: {}
1150
+ - :name: SetLoadBasedAutoScaling
1151
+ :method: :set_load_based_auto_scaling
1152
+ :inputs:
1153
+ LayerId:
1154
+ - :string
1155
+ - :required
1156
+ Enable:
1157
+ - :boolean
1158
+ UpScaling:
1159
+ - :structure:
1160
+ InstanceCount:
1161
+ - :integer
1162
+ ThresholdsWaitTime:
1163
+ - :integer
1164
+ IgnoreMetricsTime:
1165
+ - :integer
1166
+ CpuThreshold:
1167
+ - :double
1168
+ MemoryThreshold:
1169
+ - :double
1170
+ LoadThreshold:
1171
+ - :double
1172
+ DownScaling:
1173
+ - :structure:
1174
+ InstanceCount:
1175
+ - :integer
1176
+ ThresholdsWaitTime:
1177
+ - :integer
1178
+ IgnoreMetricsTime:
1179
+ - :integer
1180
+ CpuThreshold:
1181
+ - :double
1182
+ MemoryThreshold:
1183
+ - :double
1184
+ LoadThreshold:
1185
+ - :double
1186
+ :outputs: {}
1187
+ - :name: SetPermission
1188
+ :method: :set_permission
1189
+ :inputs:
1190
+ StackId:
1191
+ - :string
1192
+ - :required
1193
+ IamUserArn:
1194
+ - :string
1195
+ - :required
1196
+ AllowSsh:
1197
+ - :boolean
1198
+ AllowSudo:
1199
+ - :boolean
1200
+ :outputs: {}
1201
+ - :name: SetTimeBasedAutoScaling
1202
+ :method: :set_time_based_auto_scaling
1203
+ :inputs:
1204
+ InstanceId:
1205
+ - :string
1206
+ - :required
1207
+ AutoScalingSchedule:
1208
+ - :structure:
1209
+ Monday:
1210
+ - :map:
1211
+ :key:
1212
+ - :string
1213
+ :value:
1214
+ - :string
1215
+ Tuesday:
1216
+ - :map:
1217
+ :key:
1218
+ - :string
1219
+ :value:
1220
+ - :string
1221
+ Wednesday:
1222
+ - :map:
1223
+ :key:
1224
+ - :string
1225
+ :value:
1226
+ - :string
1227
+ Thursday:
1228
+ - :map:
1229
+ :key:
1230
+ - :string
1231
+ :value:
1232
+ - :string
1233
+ Friday:
1234
+ - :map:
1235
+ :key:
1236
+ - :string
1237
+ :value:
1238
+ - :string
1239
+ Saturday:
1240
+ - :map:
1241
+ :key:
1242
+ - :string
1243
+ :value:
1244
+ - :string
1245
+ Sunday:
1246
+ - :map:
1247
+ :key:
1248
+ - :string
1249
+ :value:
1250
+ - :string
1251
+ :outputs: {}
1252
+ - :name: StartInstance
1253
+ :method: :start_instance
1254
+ :inputs:
1255
+ InstanceId:
1256
+ - :string
1257
+ - :required
1258
+ :outputs: {}
1259
+ - :name: StartStack
1260
+ :method: :start_stack
1261
+ :inputs:
1262
+ StackId:
1263
+ - :string
1264
+ - :required
1265
+ :outputs: {}
1266
+ - :name: StopInstance
1267
+ :method: :stop_instance
1268
+ :inputs:
1269
+ InstanceId:
1270
+ - :string
1271
+ - :required
1272
+ :outputs: {}
1273
+ - :name: StopStack
1274
+ :method: :stop_stack
1275
+ :inputs:
1276
+ StackId:
1277
+ - :string
1278
+ - :required
1279
+ :outputs: {}
1280
+ - :name: UpdateApp
1281
+ :method: :update_app
1282
+ :inputs:
1283
+ AppId:
1284
+ - :string
1285
+ - :required
1286
+ Name:
1287
+ - :string
1288
+ Description:
1289
+ - :string
1290
+ Type:
1291
+ - :string
1292
+ AppSource:
1293
+ - :structure:
1294
+ Type:
1295
+ - :string
1296
+ Url:
1297
+ - :string
1298
+ Username:
1299
+ - :string
1300
+ Password:
1301
+ - :string
1302
+ SshKey:
1303
+ - :string
1304
+ Revision:
1305
+ - :string
1306
+ Domains:
1307
+ - :list:
1308
+ - :string
1309
+ EnableSsl:
1310
+ - :boolean
1311
+ SslConfiguration:
1312
+ - :structure:
1313
+ Certificate:
1314
+ - :string
1315
+ - :required
1316
+ PrivateKey:
1317
+ - :string
1318
+ - :required
1319
+ Chain:
1320
+ - :string
1321
+ Attributes:
1322
+ - :map:
1323
+ :key:
1324
+ - :string
1325
+ :value:
1326
+ - :string
1327
+ :outputs: {}
1328
+ - :name: UpdateInstance
1329
+ :method: :update_instance
1330
+ :inputs:
1331
+ InstanceId:
1332
+ - :string
1333
+ - :required
1334
+ LayerIds:
1335
+ - :list:
1336
+ - :string
1337
+ InstanceType:
1338
+ - :string
1339
+ AutoScalingType:
1340
+ - :string
1341
+ Hostname:
1342
+ - :string
1343
+ Os:
1344
+ - :string
1345
+ SshKeyName:
1346
+ - :string
1347
+ :outputs: {}
1348
+ - :name: UpdateLayer
1349
+ :method: :update_layer
1350
+ :inputs:
1351
+ LayerId:
1352
+ - :string
1353
+ - :required
1354
+ Name:
1355
+ - :string
1356
+ Shortname:
1357
+ - :string
1358
+ Attributes:
1359
+ - :map:
1360
+ :key:
1361
+ - :string
1362
+ :value:
1363
+ - :string
1364
+ CustomInstanceProfileArn:
1365
+ - :string
1366
+ CustomSecurityGroupIds:
1367
+ - :list:
1368
+ - :string
1369
+ Packages:
1370
+ - :list:
1371
+ - :string
1372
+ VolumeConfigurations:
1373
+ - :list:
1374
+ - :structure:
1375
+ MountPoint:
1376
+ - :string
1377
+ - :required
1378
+ RaidLevel:
1379
+ - :integer
1380
+ NumberOfDisks:
1381
+ - :integer
1382
+ - :required
1383
+ Size:
1384
+ - :integer
1385
+ - :required
1386
+ EnableAutoHealing:
1387
+ - :boolean
1388
+ AutoAssignElasticIps:
1389
+ - :boolean
1390
+ CustomRecipes:
1391
+ - :structure:
1392
+ Setup:
1393
+ - :list:
1394
+ - :string
1395
+ Configure:
1396
+ - :list:
1397
+ - :string
1398
+ Deploy:
1399
+ - :list:
1400
+ - :string
1401
+ Undeploy:
1402
+ - :list:
1403
+ - :string
1404
+ Shutdown:
1405
+ - :list:
1406
+ - :string
1407
+ :outputs: {}
1408
+ - :name: UpdateStack
1409
+ :method: :update_stack
1410
+ :inputs:
1411
+ StackId:
1412
+ - :string
1413
+ - :required
1414
+ Name:
1415
+ - :string
1416
+ Attributes:
1417
+ - :map:
1418
+ :key:
1419
+ - :string
1420
+ :value:
1421
+ - :string
1422
+ ServiceRoleArn:
1423
+ - :string
1424
+ DefaultInstanceProfileArn:
1425
+ - :string
1426
+ DefaultOs:
1427
+ - :string
1428
+ HostnameTheme:
1429
+ - :string
1430
+ DefaultAvailabilityZone:
1431
+ - :string
1432
+ CustomJson:
1433
+ - :string
1434
+ UseCustomCookbooks:
1435
+ - :boolean
1436
+ CustomCookbooksSource:
1437
+ - :structure:
1438
+ Type:
1439
+ - :string
1440
+ Url:
1441
+ - :string
1442
+ Username:
1443
+ - :string
1444
+ Password:
1445
+ - :string
1446
+ SshKey:
1447
+ - :string
1448
+ Revision:
1449
+ - :string
1450
+ DefaultSshKeyName:
1451
+ - :string
1452
+ :outputs: {}
1453
+ - :name: UpdateUserProfile
1454
+ :method: :update_user_profile
1455
+ :inputs:
1456
+ IamUserArn:
1457
+ - :string
1458
+ - :required
1459
+ SshUsername:
1460
+ - :string
1461
+ SshPublicKey:
1462
+ - :string
1463
+ :outputs: {}