aws-sdk-v1 1.52.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.yardopts +7 -0
- data/LICENSE.txt +12 -0
- data/README.md +337 -0
- data/bin/aws-rb +179 -0
- data/ca-bundle.crt +3554 -0
- data/endpoints.json +1671 -0
- data/lib/aws-sdk-v1.rb +2 -0
- data/lib/aws-sdk.rb +1 -0
- data/lib/aws.rb +14 -0
- data/lib/aws/api_config/AutoScaling-2011-01-01.yml +1070 -0
- data/lib/aws/api_config/CloudFormation-2010-05-15.yml +372 -0
- data/lib/aws/api_config/CloudFront-2013-05-12.yml +2448 -0
- data/lib/aws/api_config/CloudFront-2013-08-26.yml +2599 -0
- data/lib/aws/api_config/CloudFront-2013-09-27.yml +2765 -0
- data/lib/aws/api_config/CloudFront-2013-11-11.yml +2886 -0
- data/lib/aws/api_config/CloudFront-2013-11-22.yml +2918 -0
- data/lib/aws/api_config/CloudFront-2014-01-31.yml +2934 -0
- data/lib/aws/api_config/CloudFront-2014-05-31.yml +3100 -0
- data/lib/aws/api_config/CloudSearch-2011-02-01.yml +681 -0
- data/lib/aws/api_config/CloudSearch-2013-01-01.yml +1164 -0
- data/lib/aws/api_config/CloudTrail-2013-11-01.yml +130 -0
- data/lib/aws/api_config/CloudWatch-2010-08-01.yml +433 -0
- data/lib/aws/api_config/DataPipeline-2012-10-29.yml +422 -0
- data/lib/aws/api_config/DirectConnect-2012-10-25.yml +735 -0
- data/lib/aws/api_config/DynamoDB-2011-12-05.yml +1168 -0
- data/lib/aws/api_config/DynamoDB-2012-08-10.yml +2105 -0
- data/lib/aws/api_config/EC2-2013-08-15.yml +4708 -0
- data/lib/aws/api_config/EC2-2013-10-01.yml +4726 -0
- data/lib/aws/api_config/EC2-2013-10-15.yml +4651 -0
- data/lib/aws/api_config/EC2-2014-02-01.yml +4755 -0
- data/lib/aws/api_config/EC2-2014-05-01.yml +4812 -0
- data/lib/aws/api_config/ELB-2012-06-01.yml +766 -0
- data/lib/aws/api_config/EMR-2009-03-31.yml +972 -0
- data/lib/aws/api_config/ElastiCache-2013-06-15.yml +1188 -0
- data/lib/aws/api_config/ElastiCache-2014-03-24.yml +1375 -0
- data/lib/aws/api_config/ElastiCache-2014-07-15.yml +1385 -0
- data/lib/aws/api_config/ElasticBeanstalk-2010-12-01.yml +854 -0
- data/lib/aws/api_config/ElasticTranscoder-2012-09-25.yml +3082 -0
- data/lib/aws/api_config/Glacier-2012-06-01.yml +649 -0
- data/lib/aws/api_config/IAM-2010-05-08.yml +1339 -0
- data/lib/aws/api_config/ImportExport-2010-06-01.yml +109 -0
- data/lib/aws/api_config/Kinesis-2013-12-02.yml +201 -0
- data/lib/aws/api_config/OpsWorks-2013-02-18.yml +2025 -0
- data/lib/aws/api_config/RDS-2013-05-15.yml +2464 -0
- data/lib/aws/api_config/RDS-2013-09-09.yml +2640 -0
- data/lib/aws/api_config/Redshift-2012-12-01.yml +2161 -0
- data/lib/aws/api_config/Route53-2012-12-12.yml +547 -0
- data/lib/aws/api_config/Route53-2013-04-01.yml +889 -0
- data/lib/aws/api_config/SNS-2010-03-31.yml +448 -0
- data/lib/aws/api_config/SQS-2012-11-05.yml +404 -0
- data/lib/aws/api_config/STS-2011-06-15.yml +151 -0
- data/lib/aws/api_config/SimpleDB-2009-04-15.yml +306 -0
- data/lib/aws/api_config/SimpleEmailService-2010-12-01.yml +346 -0
- data/lib/aws/api_config/SimpleWorkflow-2012-01-25.yml +2388 -0
- data/lib/aws/api_config/StorageGateway-2012-06-30.yml +748 -0
- data/lib/aws/api_config/StorageGateway-2013-06-30.yml +1025 -0
- data/lib/aws/api_config/Support-2013-04-15.yml +489 -0
- data/lib/aws/auto_scaling.rb +163 -0
- data/lib/aws/auto_scaling/activity.rb +102 -0
- data/lib/aws/auto_scaling/activity_collection.rb +81 -0
- data/lib/aws/auto_scaling/client.rb +48 -0
- data/lib/aws/auto_scaling/config.rb +18 -0
- data/lib/aws/auto_scaling/errors.rb +22 -0
- data/lib/aws/auto_scaling/group.rb +421 -0
- data/lib/aws/auto_scaling/group_collection.rb +96 -0
- data/lib/aws/auto_scaling/group_options.rb +155 -0
- data/lib/aws/auto_scaling/instance.rb +192 -0
- data/lib/aws/auto_scaling/instance_collection.rb +63 -0
- data/lib/aws/auto_scaling/launch_configuration.rb +162 -0
- data/lib/aws/auto_scaling/launch_configuration_collection.rb +160 -0
- data/lib/aws/auto_scaling/notification_configuration.rb +89 -0
- data/lib/aws/auto_scaling/notification_configuration_collection.rb +183 -0
- data/lib/aws/auto_scaling/scaling_policy.rb +142 -0
- data/lib/aws/auto_scaling/scaling_policy_collection.rb +72 -0
- data/lib/aws/auto_scaling/scaling_policy_options.rb +65 -0
- data/lib/aws/auto_scaling/scheduled_action.rb +141 -0
- data/lib/aws/auto_scaling/scheduled_action_collection.rb +202 -0
- data/lib/aws/auto_scaling/tag.rb +59 -0
- data/lib/aws/auto_scaling/tag_collection.rb +114 -0
- data/lib/aws/cloud_formation.rb +272 -0
- data/lib/aws/cloud_formation/client.rb +48 -0
- data/lib/aws/cloud_formation/config.rb +18 -0
- data/lib/aws/cloud_formation/errors.rb +22 -0
- data/lib/aws/cloud_formation/stack.rb +266 -0
- data/lib/aws/cloud_formation/stack_collection.rb +232 -0
- data/lib/aws/cloud_formation/stack_event.rb +73 -0
- data/lib/aws/cloud_formation/stack_event_collection.rb +47 -0
- data/lib/aws/cloud_formation/stack_options.rb +72 -0
- data/lib/aws/cloud_formation/stack_output.rb +53 -0
- data/lib/aws/cloud_formation/stack_resource.rb +117 -0
- data/lib/aws/cloud_formation/stack_resource_collection.rb +83 -0
- data/lib/aws/cloud_formation/stack_resource_summary_collection.rb +64 -0
- data/lib/aws/cloud_formation/stack_summary_collection.rb +123 -0
- data/lib/aws/cloud_front.rb +72 -0
- data/lib/aws/cloud_front/client.rb +57 -0
- data/lib/aws/cloud_front/config.rb +18 -0
- data/lib/aws/cloud_front/errors.rb +22 -0
- data/lib/aws/cloud_search.rb +73 -0
- data/lib/aws/cloud_search/client.rb +40 -0
- data/lib/aws/cloud_search/config.rb +18 -0
- data/lib/aws/cloud_search/errors.rb +22 -0
- data/lib/aws/cloud_trail.rb +72 -0
- data/lib/aws/cloud_trail/client.rb +35 -0
- data/lib/aws/cloud_trail/config.rb +18 -0
- data/lib/aws/cloud_trail/errors.rb +22 -0
- data/lib/aws/cloud_watch.rb +118 -0
- data/lib/aws/cloud_watch/alarm.rb +293 -0
- data/lib/aws/cloud_watch/alarm_collection.rb +153 -0
- data/lib/aws/cloud_watch/alarm_history_item.rb +50 -0
- data/lib/aws/cloud_watch/alarm_history_item_collection.rb +84 -0
- data/lib/aws/cloud_watch/client.rb +40 -0
- data/lib/aws/cloud_watch/config.rb +18 -0
- data/lib/aws/cloud_watch/errors.rb +22 -0
- data/lib/aws/cloud_watch/metric.rb +135 -0
- data/lib/aws/cloud_watch/metric_alarm_collection.rb +160 -0
- data/lib/aws/cloud_watch/metric_collection.rb +129 -0
- data/lib/aws/cloud_watch/metric_statistics.rb +69 -0
- data/lib/aws/core.rb +716 -0
- data/lib/aws/core/async_handle.rb +90 -0
- data/lib/aws/core/cacheable.rb +77 -0
- data/lib/aws/core/client.rb +787 -0
- data/lib/aws/core/collection.rb +263 -0
- data/lib/aws/core/collection/simple.rb +82 -0
- data/lib/aws/core/collection/with_limit_and_next_token.rb +71 -0
- data/lib/aws/core/collection/with_next_token.rb +97 -0
- data/lib/aws/core/configuration.rb +542 -0
- data/lib/aws/core/credential_providers.rb +639 -0
- data/lib/aws/core/data.rb +247 -0
- data/lib/aws/core/deprecations.rb +84 -0
- data/lib/aws/core/endpoints.rb +37 -0
- data/lib/aws/core/http/connection_pool.rb +369 -0
- data/lib/aws/core/http/curb_handler.rb +148 -0
- data/lib/aws/core/http/handler.rb +89 -0
- data/lib/aws/core/http/net_http_handler.rb +144 -0
- data/lib/aws/core/http/patch.rb +102 -0
- data/lib/aws/core/http/request.rb +259 -0
- data/lib/aws/core/http/response.rb +81 -0
- data/lib/aws/core/indifferent_hash.rb +88 -0
- data/lib/aws/core/inflection.rb +56 -0
- data/lib/aws/core/ini_parser.rb +42 -0
- data/lib/aws/core/json_client.rb +47 -0
- data/lib/aws/core/json_parser.rb +76 -0
- data/lib/aws/core/json_request_builder.rb +35 -0
- data/lib/aws/core/json_response_parser.rb +79 -0
- data/lib/aws/core/lazy_error_classes.rb +108 -0
- data/lib/aws/core/log_formatter.rb +428 -0
- data/lib/aws/core/managed_file.rb +32 -0
- data/lib/aws/core/meta_utils.rb +45 -0
- data/lib/aws/core/model.rb +62 -0
- data/lib/aws/core/naming.rb +30 -0
- data/lib/aws/core/option_grammar.rb +738 -0
- data/lib/aws/core/options/json_serializer.rb +82 -0
- data/lib/aws/core/options/validator.rb +155 -0
- data/lib/aws/core/options/xml_serializer.rb +118 -0
- data/lib/aws/core/page_result.rb +75 -0
- data/lib/aws/core/policy.rb +941 -0
- data/lib/aws/core/query_client.rb +41 -0
- data/lib/aws/core/query_error_parser.rb +24 -0
- data/lib/aws/core/query_request_builder.rb +47 -0
- data/lib/aws/core/query_response_parser.rb +35 -0
- data/lib/aws/core/region.rb +85 -0
- data/lib/aws/core/region_collection.rb +80 -0
- data/lib/aws/core/resource.rb +413 -0
- data/lib/aws/core/resource_cache.rb +40 -0
- data/lib/aws/core/response.rb +215 -0
- data/lib/aws/core/response_cache.rb +50 -0
- data/lib/aws/core/rest_error_parser.rb +24 -0
- data/lib/aws/core/rest_json_client.rb +40 -0
- data/lib/aws/core/rest_request_builder.rb +154 -0
- data/lib/aws/core/rest_response_parser.rb +66 -0
- data/lib/aws/core/rest_xml_client.rb +47 -0
- data/lib/aws/core/service_interface.rb +83 -0
- data/lib/aws/core/signers/base.rb +46 -0
- data/lib/aws/core/signers/cloud_front.rb +56 -0
- data/lib/aws/core/signers/s3.rb +159 -0
- data/lib/aws/core/signers/version_2.rb +72 -0
- data/lib/aws/core/signers/version_3.rb +86 -0
- data/lib/aws/core/signers/version_3_https.rb +61 -0
- data/lib/aws/core/signers/version_4.rb +228 -0
- data/lib/aws/core/signers/version_4/chunk_signed_stream.rb +191 -0
- data/lib/aws/core/uri_escape.rb +44 -0
- data/lib/aws/core/xml/frame.rb +245 -0
- data/lib/aws/core/xml/frame_stack.rb +85 -0
- data/lib/aws/core/xml/grammar.rb +307 -0
- data/lib/aws/core/xml/parser.rb +70 -0
- data/lib/aws/core/xml/root_frame.rb +65 -0
- data/lib/aws/core/xml/sax_handlers/libxml.rb +47 -0
- data/lib/aws/core/xml/sax_handlers/nokogiri.rb +56 -0
- data/lib/aws/core/xml/sax_handlers/ox.rb +41 -0
- data/lib/aws/core/xml/sax_handlers/rexml.rb +47 -0
- data/lib/aws/core/xml/stub.rb +123 -0
- data/lib/aws/data_pipeline.rb +72 -0
- data/lib/aws/data_pipeline/client.rb +36 -0
- data/lib/aws/data_pipeline/config.rb +18 -0
- data/lib/aws/data_pipeline/errors.rb +20 -0
- data/lib/aws/direct_connect.rb +73 -0
- data/lib/aws/direct_connect/client.rb +36 -0
- data/lib/aws/direct_connect/config.rb +18 -0
- data/lib/aws/direct_connect/errors.rb +22 -0
- data/lib/aws/dynamo_db.rb +230 -0
- data/lib/aws/dynamo_db/attribute_collection.rb +456 -0
- data/lib/aws/dynamo_db/batch_get.rb +213 -0
- data/lib/aws/dynamo_db/batch_write.rb +254 -0
- data/lib/aws/dynamo_db/binary.rb +35 -0
- data/lib/aws/dynamo_db/client.rb +129 -0
- data/lib/aws/dynamo_db/client/v20111205.rb +1266 -0
- data/lib/aws/dynamo_db/client/v20120810.rb +1409 -0
- data/lib/aws/dynamo_db/client_v2.rb +44 -0
- data/lib/aws/dynamo_db/config.rb +24 -0
- data/lib/aws/dynamo_db/errors.rb +20 -0
- data/lib/aws/dynamo_db/expectations.rb +40 -0
- data/lib/aws/dynamo_db/item.rb +133 -0
- data/lib/aws/dynamo_db/item_collection.rb +856 -0
- data/lib/aws/dynamo_db/item_data.rb +31 -0
- data/lib/aws/dynamo_db/keys.rb +41 -0
- data/lib/aws/dynamo_db/primary_key_element.rb +48 -0
- data/lib/aws/dynamo_db/resource.rb +33 -0
- data/lib/aws/dynamo_db/table.rb +492 -0
- data/lib/aws/dynamo_db/table_collection.rb +165 -0
- data/lib/aws/dynamo_db/types.rb +111 -0
- data/lib/aws/ec2.rb +428 -0
- data/lib/aws/ec2/attachment.rb +135 -0
- data/lib/aws/ec2/attachment_collection.rb +54 -0
- data/lib/aws/ec2/availability_zone.rb +86 -0
- data/lib/aws/ec2/availability_zone_collection.rb +43 -0
- data/lib/aws/ec2/block_device_mappings.rb +53 -0
- data/lib/aws/ec2/client.rb +154 -0
- data/lib/aws/ec2/collection.rb +36 -0
- data/lib/aws/ec2/config.rb +21 -0
- data/lib/aws/ec2/customer_gateway.rb +90 -0
- data/lib/aws/ec2/customer_gateway_collection.rb +73 -0
- data/lib/aws/ec2/dhcp_options.rb +106 -0
- data/lib/aws/ec2/dhcp_options_collection.rb +87 -0
- data/lib/aws/ec2/elastic_ip.rb +209 -0
- data/lib/aws/ec2/elastic_ip_collection.rb +93 -0
- data/lib/aws/ec2/errors.rb +32 -0
- data/lib/aws/ec2/export_task.rb +120 -0
- data/lib/aws/ec2/export_task_collection.rb +67 -0
- data/lib/aws/ec2/filtered_collection.rb +87 -0
- data/lib/aws/ec2/has_permissions.rb +44 -0
- data/lib/aws/ec2/image.rb +270 -0
- data/lib/aws/ec2/image_collection.rb +219 -0
- data/lib/aws/ec2/instance.rb +803 -0
- data/lib/aws/ec2/instance_collection.rb +402 -0
- data/lib/aws/ec2/internet_gateway.rb +122 -0
- data/lib/aws/ec2/internet_gateway/attachment.rb +78 -0
- data/lib/aws/ec2/internet_gateway_collection.rb +54 -0
- data/lib/aws/ec2/key_pair.rb +82 -0
- data/lib/aws/ec2/key_pair_collection.rb +99 -0
- data/lib/aws/ec2/network_acl.rb +256 -0
- data/lib/aws/ec2/network_acl/association.rb +56 -0
- data/lib/aws/ec2/network_acl/entry.rb +147 -0
- data/lib/aws/ec2/network_acl_collection.rb +64 -0
- data/lib/aws/ec2/network_interface.rb +237 -0
- data/lib/aws/ec2/network_interface/attachment.rb +100 -0
- data/lib/aws/ec2/network_interface_collection.rb +103 -0
- data/lib/aws/ec2/permission_collection.rb +174 -0
- data/lib/aws/ec2/region.rb +106 -0
- data/lib/aws/ec2/region_collection.rb +51 -0
- data/lib/aws/ec2/reserved_instances.rb +57 -0
- data/lib/aws/ec2/reserved_instances_collection.rb +40 -0
- data/lib/aws/ec2/reserved_instances_offering.rb +60 -0
- data/lib/aws/ec2/reserved_instances_offering_collection.rb +45 -0
- data/lib/aws/ec2/resource.rb +161 -0
- data/lib/aws/ec2/resource_tag_collection.rb +211 -0
- data/lib/aws/ec2/route_table.rb +205 -0
- data/lib/aws/ec2/route_table/association.rb +119 -0
- data/lib/aws/ec2/route_table/route.rb +119 -0
- data/lib/aws/ec2/route_table_collection.rb +72 -0
- data/lib/aws/ec2/security_group.rb +482 -0
- data/lib/aws/ec2/security_group/ip_permission.rb +135 -0
- data/lib/aws/ec2/security_group/ip_permission_collection.rb +82 -0
- data/lib/aws/ec2/security_group_collection.rb +133 -0
- data/lib/aws/ec2/snapshot.rb +143 -0
- data/lib/aws/ec2/snapshot_collection.rb +131 -0
- data/lib/aws/ec2/subnet.rb +161 -0
- data/lib/aws/ec2/subnet_collection.rb +119 -0
- data/lib/aws/ec2/tag.rb +81 -0
- data/lib/aws/ec2/tag_collection.rb +107 -0
- data/lib/aws/ec2/tagged_collection.rb +67 -0
- data/lib/aws/ec2/tagged_item.rb +85 -0
- data/lib/aws/ec2/volume.rb +185 -0
- data/lib/aws/ec2/volume_collection.rb +102 -0
- data/lib/aws/ec2/vpc.rb +174 -0
- data/lib/aws/ec2/vpc_collection.rb +70 -0
- data/lib/aws/ec2/vpn_connection.rb +99 -0
- data/lib/aws/ec2/vpn_connection/telemetry.rb +49 -0
- data/lib/aws/ec2/vpn_connection_collection.rb +96 -0
- data/lib/aws/ec2/vpn_gateway.rb +123 -0
- data/lib/aws/ec2/vpn_gateway/attachment.rb +45 -0
- data/lib/aws/ec2/vpn_gateway_collection.rb +77 -0
- data/lib/aws/elastic_beanstalk.rb +49 -0
- data/lib/aws/elastic_beanstalk/client.rb +36 -0
- data/lib/aws/elastic_beanstalk/config.rb +18 -0
- data/lib/aws/elastic_beanstalk/errors.rb +22 -0
- data/lib/aws/elastic_transcoder.rb +29 -0
- data/lib/aws/elastic_transcoder/client.rb +48 -0
- data/lib/aws/elastic_transcoder/config.rb +18 -0
- data/lib/aws/elastic_transcoder/errors.rb +23 -0
- data/lib/aws/elasticache.rb +49 -0
- data/lib/aws/elasticache/client.rb +41 -0
- data/lib/aws/elasticache/config.rb +18 -0
- data/lib/aws/elasticache/errors.rb +22 -0
- data/lib/aws/elb.rb +66 -0
- data/lib/aws/elb/availability_zone_collection.rb +138 -0
- data/lib/aws/elb/backend_server_policy_collection.rb +139 -0
- data/lib/aws/elb/client.rb +35 -0
- data/lib/aws/elb/config.rb +18 -0
- data/lib/aws/elb/errors.rb +26 -0
- data/lib/aws/elb/instance_collection.rb +168 -0
- data/lib/aws/elb/listener.rb +190 -0
- data/lib/aws/elb/listener_collection.rb +113 -0
- data/lib/aws/elb/listener_opts.rb +45 -0
- data/lib/aws/elb/load_balancer.rb +280 -0
- data/lib/aws/elb/load_balancer_collection.rb +146 -0
- data/lib/aws/elb/load_balancer_policy.rb +93 -0
- data/lib/aws/elb/load_balancer_policy_collection.rb +208 -0
- data/lib/aws/emr.rb +87 -0
- data/lib/aws/emr/client.rb +35 -0
- data/lib/aws/emr/config.rb +18 -0
- data/lib/aws/emr/errors.rb +22 -0
- data/lib/aws/emr/instance_group.rb +138 -0
- data/lib/aws/emr/instance_group_collection.rb +82 -0
- data/lib/aws/emr/job_flow.rb +307 -0
- data/lib/aws/emr/job_flow_collection.rb +183 -0
- data/lib/aws/errors.rb +162 -0
- data/lib/aws/glacier.rb +79 -0
- data/lib/aws/glacier/archive.rb +56 -0
- data/lib/aws/glacier/archive_collection.rb +146 -0
- data/lib/aws/glacier/client.rb +49 -0
- data/lib/aws/glacier/config.rb +19 -0
- data/lib/aws/glacier/errors.rb +22 -0
- data/lib/aws/glacier/resource.rb +30 -0
- data/lib/aws/glacier/vault.rb +145 -0
- data/lib/aws/glacier/vault_collection.rb +75 -0
- data/lib/aws/glacier/vault_notification_configuration.rb +29 -0
- data/lib/aws/iam.rb +408 -0
- data/lib/aws/iam/access_key.rb +185 -0
- data/lib/aws/iam/access_key_collection.rb +128 -0
- data/lib/aws/iam/account_alias_collection.rb +79 -0
- data/lib/aws/iam/client.rb +49 -0
- data/lib/aws/iam/collection.rb +83 -0
- data/lib/aws/iam/config.rb +18 -0
- data/lib/aws/iam/errors.rb +22 -0
- data/lib/aws/iam/group.rb +111 -0
- data/lib/aws/iam/group_collection.rb +132 -0
- data/lib/aws/iam/group_policy_collection.rb +47 -0
- data/lib/aws/iam/group_user_collection.rb +84 -0
- data/lib/aws/iam/login_profile.rb +111 -0
- data/lib/aws/iam/mfa_device.rb +52 -0
- data/lib/aws/iam/mfa_device_collection.rb +127 -0
- data/lib/aws/iam/policy.rb +46 -0
- data/lib/aws/iam/policy_collection.rb +188 -0
- data/lib/aws/iam/resource.rb +62 -0
- data/lib/aws/iam/server_certificate.rb +148 -0
- data/lib/aws/iam/server_certificate_collection.rb +138 -0
- data/lib/aws/iam/signing_certificate.rb +186 -0
- data/lib/aws/iam/signing_certificate_collection.rb +131 -0
- data/lib/aws/iam/user.rb +200 -0
- data/lib/aws/iam/user_collection.rb +133 -0
- data/lib/aws/iam/user_group_collection.rb +98 -0
- data/lib/aws/iam/user_policy.rb +90 -0
- data/lib/aws/iam/user_policy_collection.rb +45 -0
- data/lib/aws/iam/virtual_mfa_device.rb +139 -0
- data/lib/aws/iam/virtual_mfa_device_collection.rb +73 -0
- data/lib/aws/import_export.rb +73 -0
- data/lib/aws/import_export/client.rb +35 -0
- data/lib/aws/import_export/config.rb +19 -0
- data/lib/aws/import_export/errors.rb +22 -0
- data/lib/aws/kinesis.rb +53 -0
- data/lib/aws/kinesis/client.rb +35 -0
- data/lib/aws/kinesis/config.rb +18 -0
- data/lib/aws/kinesis/errors.rb +20 -0
- data/lib/aws/ops_works.rb +29 -0
- data/lib/aws/ops_works/client.rb +35 -0
- data/lib/aws/ops_works/config.rb +18 -0
- data/lib/aws/ops_works/errors.rb +20 -0
- data/lib/aws/rails.rb +195 -0
- data/lib/aws/rds.rb +70 -0
- data/lib/aws/rds/client.rb +42 -0
- data/lib/aws/rds/config.rb +18 -0
- data/lib/aws/rds/db_instance.rb +215 -0
- data/lib/aws/rds/db_instance_collection.rb +75 -0
- data/lib/aws/rds/db_snapshot.rb +163 -0
- data/lib/aws/rds/db_snapshot_collection.rb +89 -0
- data/lib/aws/rds/errors.rb +22 -0
- data/lib/aws/record.rb +139 -0
- data/lib/aws/record/abstract_base.rb +689 -0
- data/lib/aws/record/attributes.rb +388 -0
- data/lib/aws/record/conversion.rb +38 -0
- data/lib/aws/record/dirty_tracking.rb +287 -0
- data/lib/aws/record/errors.rb +143 -0
- data/lib/aws/record/exceptions.rb +51 -0
- data/lib/aws/record/hash_model.rb +204 -0
- data/lib/aws/record/hash_model/attributes.rb +195 -0
- data/lib/aws/record/hash_model/finder_methods.rb +172 -0
- data/lib/aws/record/hash_model/scope.rb +108 -0
- data/lib/aws/record/model.rb +453 -0
- data/lib/aws/record/model/attributes.rb +377 -0
- data/lib/aws/record/model/finder_methods.rb +232 -0
- data/lib/aws/record/model/scope.rb +212 -0
- data/lib/aws/record/naming.rb +31 -0
- data/lib/aws/record/scope.rb +203 -0
- data/lib/aws/record/validations.rb +694 -0
- data/lib/aws/record/validator.rb +246 -0
- data/lib/aws/record/validators/acceptance.rb +49 -0
- data/lib/aws/record/validators/block.rb +36 -0
- data/lib/aws/record/validators/confirmation.rb +41 -0
- data/lib/aws/record/validators/count.rb +106 -0
- data/lib/aws/record/validators/exclusion.rb +41 -0
- data/lib/aws/record/validators/format.rb +55 -0
- data/lib/aws/record/validators/inclusion.rb +54 -0
- data/lib/aws/record/validators/length.rb +105 -0
- data/lib/aws/record/validators/method.rb +31 -0
- data/lib/aws/record/validators/numericality.rb +136 -0
- data/lib/aws/record/validators/presence.rb +43 -0
- data/lib/aws/redshift.rb +51 -0
- data/lib/aws/redshift/client.rb +35 -0
- data/lib/aws/redshift/config.rb +18 -0
- data/lib/aws/redshift/errors.rb +22 -0
- data/lib/aws/route_53.rb +86 -0
- data/lib/aws/route_53/change_batch.rb +161 -0
- data/lib/aws/route_53/change_info.rb +72 -0
- data/lib/aws/route_53/client.rb +38 -0
- data/lib/aws/route_53/config.rb +18 -0
- data/lib/aws/route_53/errors.rb +22 -0
- data/lib/aws/route_53/hosted_zone.rb +134 -0
- data/lib/aws/route_53/hosted_zone_collection.rb +101 -0
- data/lib/aws/route_53/resource_record_set.rb +251 -0
- data/lib/aws/route_53/resource_record_set_collection.rb +110 -0
- data/lib/aws/s3.rb +156 -0
- data/lib/aws/s3/access_control_list.rb +265 -0
- data/lib/aws/s3/acl_object.rb +264 -0
- data/lib/aws/s3/acl_options.rb +204 -0
- data/lib/aws/s3/bucket.rb +742 -0
- data/lib/aws/s3/bucket_collection.rb +162 -0
- data/lib/aws/s3/bucket_lifecycle_configuration.rb +473 -0
- data/lib/aws/s3/bucket_tag_collection.rb +111 -0
- data/lib/aws/s3/bucket_version_collection.rb +79 -0
- data/lib/aws/s3/cipher_io.rb +120 -0
- data/lib/aws/s3/client.rb +2067 -0
- data/lib/aws/s3/client/xml.rb +266 -0
- data/lib/aws/s3/config.rb +48 -0
- data/lib/aws/s3/cors_rule.rb +108 -0
- data/lib/aws/s3/cors_rule_collection.rb +194 -0
- data/lib/aws/s3/data_options.rb +191 -0
- data/lib/aws/s3/encryption_utils.rb +146 -0
- data/lib/aws/s3/errors.rb +94 -0
- data/lib/aws/s3/multipart_upload.rb +353 -0
- data/lib/aws/s3/multipart_upload_collection.rb +76 -0
- data/lib/aws/s3/object_collection.rb +353 -0
- data/lib/aws/s3/object_metadata.rb +103 -0
- data/lib/aws/s3/object_upload_collection.rb +77 -0
- data/lib/aws/s3/object_version.rb +154 -0
- data/lib/aws/s3/object_version_collection.rb +89 -0
- data/lib/aws/s3/paginated_collection.rb +75 -0
- data/lib/aws/s3/policy.rb +74 -0
- data/lib/aws/s3/prefix_and_delimiter_collection.rb +47 -0
- data/lib/aws/s3/prefixed_collection.rb +85 -0
- data/lib/aws/s3/presign_v4.rb +136 -0
- data/lib/aws/s3/presigned_post.rb +554 -0
- data/lib/aws/s3/request.rb +62 -0
- data/lib/aws/s3/s3_object.rb +1784 -0
- data/lib/aws/s3/tree.rb +116 -0
- data/lib/aws/s3/tree/branch_node.rb +68 -0
- data/lib/aws/s3/tree/child_collection.rb +104 -0
- data/lib/aws/s3/tree/leaf_node.rb +94 -0
- data/lib/aws/s3/tree/node.rb +22 -0
- data/lib/aws/s3/tree/parent.rb +87 -0
- data/lib/aws/s3/uploaded_part.rb +82 -0
- data/lib/aws/s3/uploaded_part_collection.rb +84 -0
- data/lib/aws/s3/website_configuration.rb +102 -0
- data/lib/aws/simple_db.rb +218 -0
- data/lib/aws/simple_db/attribute.rb +156 -0
- data/lib/aws/simple_db/attribute_collection.rb +240 -0
- data/lib/aws/simple_db/client.rb +67 -0
- data/lib/aws/simple_db/config.rb +20 -0
- data/lib/aws/simple_db/consistent_read_option.rb +42 -0
- data/lib/aws/simple_db/delete_attributes.rb +62 -0
- data/lib/aws/simple_db/domain.rb +123 -0
- data/lib/aws/simple_db/domain_collection.rb +86 -0
- data/lib/aws/simple_db/domain_metadata.rb +110 -0
- data/lib/aws/simple_db/errors.rb +55 -0
- data/lib/aws/simple_db/expect_condition_option.rb +45 -0
- data/lib/aws/simple_db/item.rb +93 -0
- data/lib/aws/simple_db/item_collection.rb +654 -0
- data/lib/aws/simple_db/item_data.rb +73 -0
- data/lib/aws/simple_db/put_attributes.rb +60 -0
- data/lib/aws/simple_email_service.rb +443 -0
- data/lib/aws/simple_email_service/client.rb +37 -0
- data/lib/aws/simple_email_service/config.rb +18 -0
- data/lib/aws/simple_email_service/email_address_collection.rb +69 -0
- data/lib/aws/simple_email_service/errors.rb +22 -0
- data/lib/aws/simple_email_service/identity.rb +230 -0
- data/lib/aws/simple_email_service/identity_collection.rb +81 -0
- data/lib/aws/simple_email_service/quotas.rb +66 -0
- data/lib/aws/simple_workflow.rb +227 -0
- data/lib/aws/simple_workflow/activity_task.rb +178 -0
- data/lib/aws/simple_workflow/activity_task_collection.rb +123 -0
- data/lib/aws/simple_workflow/activity_type.rb +131 -0
- data/lib/aws/simple_workflow/activity_type_collection.rb +93 -0
- data/lib/aws/simple_workflow/client.rb +69 -0
- data/lib/aws/simple_workflow/config.rb +18 -0
- data/lib/aws/simple_workflow/count.rb +49 -0
- data/lib/aws/simple_workflow/decision_task.rb +603 -0
- data/lib/aws/simple_workflow/decision_task_collection.rb +223 -0
- data/lib/aws/simple_workflow/domain.rb +122 -0
- data/lib/aws/simple_workflow/domain_collection.rb +169 -0
- data/lib/aws/simple_workflow/errors.rb +20 -0
- data/lib/aws/simple_workflow/history_event.rb +276 -0
- data/lib/aws/simple_workflow/history_event_collection.rb +76 -0
- data/lib/aws/simple_workflow/option_formatters.rb +82 -0
- data/lib/aws/simple_workflow/resource.rb +94 -0
- data/lib/aws/simple_workflow/type.rb +89 -0
- data/lib/aws/simple_workflow/type_collection.rb +140 -0
- data/lib/aws/simple_workflow/workflow_execution.rb +384 -0
- data/lib/aws/simple_workflow/workflow_execution_collection.rb +617 -0
- data/lib/aws/simple_workflow/workflow_type.rb +177 -0
- data/lib/aws/simple_workflow/workflow_type_collection.rb +91 -0
- data/lib/aws/sns.rb +76 -0
- data/lib/aws/sns/client.rb +35 -0
- data/lib/aws/sns/config.rb +18 -0
- data/lib/aws/sns/errors.rb +22 -0
- data/lib/aws/sns/has_delivery_policy.rb +68 -0
- data/lib/aws/sns/message.rb +204 -0
- data/lib/aws/sns/originators/from_auto_scaling.rb +68 -0
- data/lib/aws/sns/policy.rb +47 -0
- data/lib/aws/sns/subscription.rb +165 -0
- data/lib/aws/sns/subscription_collection.rb +78 -0
- data/lib/aws/sns/topic.rb +403 -0
- data/lib/aws/sns/topic_collection.rb +62 -0
- data/lib/aws/sns/topic_subscription_collection.rb +54 -0
- data/lib/aws/sqs.rb +80 -0
- data/lib/aws/sqs/client.rb +53 -0
- data/lib/aws/sqs/config.rb +20 -0
- data/lib/aws/sqs/errors.rb +125 -0
- data/lib/aws/sqs/policy.rb +48 -0
- data/lib/aws/sqs/queue.rb +856 -0
- data/lib/aws/sqs/queue_collection.rb +186 -0
- data/lib/aws/sqs/received_message.rb +190 -0
- data/lib/aws/sqs/received_sns_message.rb +116 -0
- data/lib/aws/storage_gateway.rb +72 -0
- data/lib/aws/storage_gateway/client.rb +42 -0
- data/lib/aws/storage_gateway/config.rb +18 -0
- data/lib/aws/storage_gateway/errors.rb +22 -0
- data/lib/aws/sts.rb +164 -0
- data/lib/aws/sts/client.rb +55 -0
- data/lib/aws/sts/config.rb +18 -0
- data/lib/aws/sts/errors.rb +22 -0
- data/lib/aws/sts/federated_session.rb +56 -0
- data/lib/aws/sts/policy.rb +30 -0
- data/lib/aws/sts/session.rb +48 -0
- data/lib/aws/support.rb +29 -0
- data/lib/aws/support/client.rb +35 -0
- data/lib/aws/support/config.rb +18 -0
- data/lib/aws/support/errors.rb +20 -0
- data/lib/aws/version.rb +17 -0
- data/rails/init.rb +15 -0
- metadata +634 -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,201 @@
|
|
1
|
+
# Copyright 2011-2014 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: Kinesis_20131202.
|
17
|
+
:api_version: '2013-12-02'
|
18
|
+
:operations:
|
19
|
+
- :name: CreateStream
|
20
|
+
:method: :create_stream
|
21
|
+
:inputs:
|
22
|
+
StreamName:
|
23
|
+
- :string
|
24
|
+
- :required
|
25
|
+
ShardCount:
|
26
|
+
- :integer
|
27
|
+
- :required
|
28
|
+
:outputs: {}
|
29
|
+
- :name: DeleteStream
|
30
|
+
:method: :delete_stream
|
31
|
+
:inputs:
|
32
|
+
StreamName:
|
33
|
+
- :string
|
34
|
+
- :required
|
35
|
+
:outputs: {}
|
36
|
+
- :name: DescribeStream
|
37
|
+
:method: :describe_stream
|
38
|
+
:inputs:
|
39
|
+
StreamName:
|
40
|
+
- :string
|
41
|
+
- :required
|
42
|
+
Limit:
|
43
|
+
- :integer
|
44
|
+
ExclusiveStartShardId:
|
45
|
+
- :string
|
46
|
+
:outputs:
|
47
|
+
StreamDescription:
|
48
|
+
:sym: :stream_description
|
49
|
+
:type: :hash
|
50
|
+
:members:
|
51
|
+
StreamName:
|
52
|
+
:sym: :stream_name
|
53
|
+
:type: :string
|
54
|
+
StreamARN:
|
55
|
+
:sym: :stream_arn
|
56
|
+
:type: :string
|
57
|
+
StreamStatus:
|
58
|
+
:sym: :stream_status
|
59
|
+
:type: :string
|
60
|
+
Shards:
|
61
|
+
:sym: :shards
|
62
|
+
:type: :hash
|
63
|
+
:members:
|
64
|
+
ShardId:
|
65
|
+
:sym: :shard_id
|
66
|
+
:type: :string
|
67
|
+
ParentShardId:
|
68
|
+
:sym: :parent_shard_id
|
69
|
+
:type: :string
|
70
|
+
AdjacentParentShardId:
|
71
|
+
:sym: :adjacent_parent_shard_id
|
72
|
+
:type: :string
|
73
|
+
HashKeyRange:
|
74
|
+
:sym: :hash_key_range
|
75
|
+
:type: :hash
|
76
|
+
:members:
|
77
|
+
StartingHashKey:
|
78
|
+
:sym: :starting_hash_key
|
79
|
+
:type: :string
|
80
|
+
EndingHashKey:
|
81
|
+
:sym: :ending_hash_key
|
82
|
+
:type: :string
|
83
|
+
SequenceNumberRange:
|
84
|
+
:sym: :sequence_number_range
|
85
|
+
:type: :hash
|
86
|
+
:members:
|
87
|
+
StartingSequenceNumber:
|
88
|
+
:sym: :starting_sequence_number
|
89
|
+
:type: :string
|
90
|
+
EndingSequenceNumber:
|
91
|
+
:sym: :ending_sequence_number
|
92
|
+
:type: :string
|
93
|
+
HasMoreShards:
|
94
|
+
:sym: :has_more_shards
|
95
|
+
:type: :boolean
|
96
|
+
- :name: GetRecords
|
97
|
+
:method: :get_records
|
98
|
+
:inputs:
|
99
|
+
ShardIterator:
|
100
|
+
- :string
|
101
|
+
- :required
|
102
|
+
Limit:
|
103
|
+
- :integer
|
104
|
+
:outputs:
|
105
|
+
Records:
|
106
|
+
:sym: :records
|
107
|
+
:type: :hash
|
108
|
+
:members:
|
109
|
+
SequenceNumber:
|
110
|
+
:sym: :sequence_number
|
111
|
+
:type: :string
|
112
|
+
Data:
|
113
|
+
:sym: :data
|
114
|
+
:type: :blob
|
115
|
+
PartitionKey:
|
116
|
+
:sym: :partition_key
|
117
|
+
:type: :string
|
118
|
+
NextShardIterator:
|
119
|
+
:sym: :next_shard_iterator
|
120
|
+
:type: :string
|
121
|
+
- :name: GetShardIterator
|
122
|
+
:method: :get_shard_iterator
|
123
|
+
:inputs:
|
124
|
+
StreamName:
|
125
|
+
- :string
|
126
|
+
- :required
|
127
|
+
ShardId:
|
128
|
+
- :string
|
129
|
+
- :required
|
130
|
+
ShardIteratorType:
|
131
|
+
- :string
|
132
|
+
- :required
|
133
|
+
StartingSequenceNumber:
|
134
|
+
- :string
|
135
|
+
:outputs:
|
136
|
+
ShardIterator:
|
137
|
+
:sym: :shard_iterator
|
138
|
+
:type: :string
|
139
|
+
- :name: ListStreams
|
140
|
+
:method: :list_streams
|
141
|
+
:inputs:
|
142
|
+
Limit:
|
143
|
+
- :integer
|
144
|
+
ExclusiveStartStreamName:
|
145
|
+
- :string
|
146
|
+
:outputs:
|
147
|
+
StreamNames:
|
148
|
+
:sym: :stream_names
|
149
|
+
:type: :string
|
150
|
+
HasMoreStreams:
|
151
|
+
:sym: :has_more_streams
|
152
|
+
:type: :boolean
|
153
|
+
- :name: MergeShards
|
154
|
+
:method: :merge_shards
|
155
|
+
:inputs:
|
156
|
+
StreamName:
|
157
|
+
- :string
|
158
|
+
- :required
|
159
|
+
ShardToMerge:
|
160
|
+
- :string
|
161
|
+
- :required
|
162
|
+
AdjacentShardToMerge:
|
163
|
+
- :string
|
164
|
+
- :required
|
165
|
+
:outputs: {}
|
166
|
+
- :name: PutRecord
|
167
|
+
:method: :put_record
|
168
|
+
:inputs:
|
169
|
+
StreamName:
|
170
|
+
- :string
|
171
|
+
- :required
|
172
|
+
Data:
|
173
|
+
- :blob
|
174
|
+
- :required
|
175
|
+
PartitionKey:
|
176
|
+
- :string
|
177
|
+
- :required
|
178
|
+
ExplicitHashKey:
|
179
|
+
- :string
|
180
|
+
SequenceNumberForOrdering:
|
181
|
+
- :string
|
182
|
+
:outputs:
|
183
|
+
ShardId:
|
184
|
+
:sym: :shard_id
|
185
|
+
:type: :string
|
186
|
+
SequenceNumber:
|
187
|
+
:sym: :sequence_number
|
188
|
+
:type: :string
|
189
|
+
- :name: SplitShard
|
190
|
+
:method: :split_shard
|
191
|
+
:inputs:
|
192
|
+
StreamName:
|
193
|
+
- :string
|
194
|
+
- :required
|
195
|
+
ShardToSplit:
|
196
|
+
- :string
|
197
|
+
- :required
|
198
|
+
NewStartingHashKey:
|
199
|
+
- :string
|
200
|
+
- :required
|
201
|
+
:outputs: {}
|
@@ -0,0 +1,2025 @@
|
|
1
|
+
# Copyright 2011-2014 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: AssignVolume
|
20
|
+
:method: :assign_volume
|
21
|
+
:inputs:
|
22
|
+
VolumeId:
|
23
|
+
- :string
|
24
|
+
- :required
|
25
|
+
InstanceId:
|
26
|
+
- :string
|
27
|
+
:outputs: {}
|
28
|
+
- :name: AssociateElasticIp
|
29
|
+
:method: :associate_elastic_ip
|
30
|
+
:inputs:
|
31
|
+
ElasticIp:
|
32
|
+
- :string
|
33
|
+
- :required
|
34
|
+
InstanceId:
|
35
|
+
- :string
|
36
|
+
:outputs: {}
|
37
|
+
- :name: AttachElasticLoadBalancer
|
38
|
+
:method: :attach_elastic_load_balancer
|
39
|
+
:inputs:
|
40
|
+
ElasticLoadBalancerName:
|
41
|
+
- :string
|
42
|
+
- :required
|
43
|
+
LayerId:
|
44
|
+
- :string
|
45
|
+
- :required
|
46
|
+
:outputs: {}
|
47
|
+
- :name: CloneStack
|
48
|
+
:method: :clone_stack
|
49
|
+
:inputs:
|
50
|
+
SourceStackId:
|
51
|
+
- :string
|
52
|
+
- :required
|
53
|
+
Name:
|
54
|
+
- :string
|
55
|
+
Region:
|
56
|
+
- :string
|
57
|
+
VpcId:
|
58
|
+
- :string
|
59
|
+
Attributes:
|
60
|
+
- :map:
|
61
|
+
:key:
|
62
|
+
- :string
|
63
|
+
:value:
|
64
|
+
- :string
|
65
|
+
ServiceRoleArn:
|
66
|
+
- :string
|
67
|
+
- :required
|
68
|
+
DefaultInstanceProfileArn:
|
69
|
+
- :string
|
70
|
+
DefaultOs:
|
71
|
+
- :string
|
72
|
+
HostnameTheme:
|
73
|
+
- :string
|
74
|
+
DefaultAvailabilityZone:
|
75
|
+
- :string
|
76
|
+
DefaultSubnetId:
|
77
|
+
- :string
|
78
|
+
CustomJson:
|
79
|
+
- :string
|
80
|
+
ConfigurationManager:
|
81
|
+
- :structure:
|
82
|
+
Name:
|
83
|
+
- :string
|
84
|
+
Version:
|
85
|
+
- :string
|
86
|
+
ChefConfiguration:
|
87
|
+
- :structure:
|
88
|
+
ManageBerkshelf:
|
89
|
+
- :boolean
|
90
|
+
BerkshelfVersion:
|
91
|
+
- :string
|
92
|
+
UseCustomCookbooks:
|
93
|
+
- :boolean
|
94
|
+
UseOpsworksSecurityGroups:
|
95
|
+
- :boolean
|
96
|
+
CustomCookbooksSource:
|
97
|
+
- :structure:
|
98
|
+
Type:
|
99
|
+
- :string
|
100
|
+
Url:
|
101
|
+
- :string
|
102
|
+
Username:
|
103
|
+
- :string
|
104
|
+
Password:
|
105
|
+
- :string
|
106
|
+
SshKey:
|
107
|
+
- :string
|
108
|
+
Revision:
|
109
|
+
- :string
|
110
|
+
DefaultSshKeyName:
|
111
|
+
- :string
|
112
|
+
ClonePermissions:
|
113
|
+
- :boolean
|
114
|
+
CloneAppIds:
|
115
|
+
- :list:
|
116
|
+
- :string
|
117
|
+
DefaultRootDeviceType:
|
118
|
+
- :string
|
119
|
+
:outputs:
|
120
|
+
StackId:
|
121
|
+
:sym: :stack_id
|
122
|
+
:type: :string
|
123
|
+
- :name: CreateApp
|
124
|
+
:method: :create_app
|
125
|
+
:inputs:
|
126
|
+
StackId:
|
127
|
+
- :string
|
128
|
+
- :required
|
129
|
+
Shortname:
|
130
|
+
- :string
|
131
|
+
Name:
|
132
|
+
- :string
|
133
|
+
- :required
|
134
|
+
Description:
|
135
|
+
- :string
|
136
|
+
DataSources:
|
137
|
+
- :list:
|
138
|
+
- :structure:
|
139
|
+
Type:
|
140
|
+
- :string
|
141
|
+
Arn:
|
142
|
+
- :string
|
143
|
+
DatabaseName:
|
144
|
+
- :string
|
145
|
+
Type:
|
146
|
+
- :string
|
147
|
+
- :required
|
148
|
+
AppSource:
|
149
|
+
- :structure:
|
150
|
+
Type:
|
151
|
+
- :string
|
152
|
+
Url:
|
153
|
+
- :string
|
154
|
+
Username:
|
155
|
+
- :string
|
156
|
+
Password:
|
157
|
+
- :string
|
158
|
+
SshKey:
|
159
|
+
- :string
|
160
|
+
Revision:
|
161
|
+
- :string
|
162
|
+
Domains:
|
163
|
+
- :list:
|
164
|
+
- :string
|
165
|
+
EnableSsl:
|
166
|
+
- :boolean
|
167
|
+
SslConfiguration:
|
168
|
+
- :structure:
|
169
|
+
Certificate:
|
170
|
+
- :string
|
171
|
+
- :required
|
172
|
+
PrivateKey:
|
173
|
+
- :string
|
174
|
+
- :required
|
175
|
+
Chain:
|
176
|
+
- :string
|
177
|
+
Attributes:
|
178
|
+
- :map:
|
179
|
+
:key:
|
180
|
+
- :string
|
181
|
+
:value:
|
182
|
+
- :string
|
183
|
+
:outputs:
|
184
|
+
AppId:
|
185
|
+
:sym: :app_id
|
186
|
+
:type: :string
|
187
|
+
- :name: CreateDeployment
|
188
|
+
:method: :create_deployment
|
189
|
+
:inputs:
|
190
|
+
StackId:
|
191
|
+
- :string
|
192
|
+
- :required
|
193
|
+
AppId:
|
194
|
+
- :string
|
195
|
+
InstanceIds:
|
196
|
+
- :list:
|
197
|
+
- :string
|
198
|
+
Command:
|
199
|
+
- :structure:
|
200
|
+
Name:
|
201
|
+
- :string
|
202
|
+
- :required
|
203
|
+
Args:
|
204
|
+
- :map:
|
205
|
+
:key:
|
206
|
+
- :string
|
207
|
+
:value:
|
208
|
+
- :list:
|
209
|
+
- :string
|
210
|
+
- :required
|
211
|
+
Comment:
|
212
|
+
- :string
|
213
|
+
CustomJson:
|
214
|
+
- :string
|
215
|
+
:outputs:
|
216
|
+
DeploymentId:
|
217
|
+
:sym: :deployment_id
|
218
|
+
:type: :string
|
219
|
+
- :name: CreateInstance
|
220
|
+
:method: :create_instance
|
221
|
+
:inputs:
|
222
|
+
StackId:
|
223
|
+
- :string
|
224
|
+
- :required
|
225
|
+
LayerIds:
|
226
|
+
- :list:
|
227
|
+
- :string
|
228
|
+
- :required
|
229
|
+
InstanceType:
|
230
|
+
- :string
|
231
|
+
- :required
|
232
|
+
AutoScalingType:
|
233
|
+
- :string
|
234
|
+
Hostname:
|
235
|
+
- :string
|
236
|
+
Os:
|
237
|
+
- :string
|
238
|
+
AmiId:
|
239
|
+
- :string
|
240
|
+
SshKeyName:
|
241
|
+
- :string
|
242
|
+
AvailabilityZone:
|
243
|
+
- :string
|
244
|
+
VirtualizationType:
|
245
|
+
- :string
|
246
|
+
SubnetId:
|
247
|
+
- :string
|
248
|
+
Architecture:
|
249
|
+
- :string
|
250
|
+
RootDeviceType:
|
251
|
+
- :string
|
252
|
+
InstallUpdatesOnBoot:
|
253
|
+
- :boolean
|
254
|
+
EbsOptimized:
|
255
|
+
- :boolean
|
256
|
+
:outputs:
|
257
|
+
InstanceId:
|
258
|
+
:sym: :instance_id
|
259
|
+
:type: :string
|
260
|
+
- :name: CreateLayer
|
261
|
+
:method: :create_layer
|
262
|
+
:inputs:
|
263
|
+
StackId:
|
264
|
+
- :string
|
265
|
+
- :required
|
266
|
+
Type:
|
267
|
+
- :string
|
268
|
+
- :required
|
269
|
+
Name:
|
270
|
+
- :string
|
271
|
+
- :required
|
272
|
+
Shortname:
|
273
|
+
- :string
|
274
|
+
- :required
|
275
|
+
Attributes:
|
276
|
+
- :map:
|
277
|
+
:key:
|
278
|
+
- :string
|
279
|
+
:value:
|
280
|
+
- :string
|
281
|
+
CustomInstanceProfileArn:
|
282
|
+
- :string
|
283
|
+
CustomSecurityGroupIds:
|
284
|
+
- :list:
|
285
|
+
- :string
|
286
|
+
Packages:
|
287
|
+
- :list:
|
288
|
+
- :string
|
289
|
+
VolumeConfigurations:
|
290
|
+
- :list:
|
291
|
+
- :structure:
|
292
|
+
MountPoint:
|
293
|
+
- :string
|
294
|
+
- :required
|
295
|
+
RaidLevel:
|
296
|
+
- :integer
|
297
|
+
NumberOfDisks:
|
298
|
+
- :integer
|
299
|
+
- :required
|
300
|
+
Size:
|
301
|
+
- :integer
|
302
|
+
- :required
|
303
|
+
VolumeType:
|
304
|
+
- :string
|
305
|
+
Iops:
|
306
|
+
- :integer
|
307
|
+
EnableAutoHealing:
|
308
|
+
- :boolean
|
309
|
+
AutoAssignElasticIps:
|
310
|
+
- :boolean
|
311
|
+
AutoAssignPublicIps:
|
312
|
+
- :boolean
|
313
|
+
CustomRecipes:
|
314
|
+
- :structure:
|
315
|
+
Setup:
|
316
|
+
- :list:
|
317
|
+
- :string
|
318
|
+
Configure:
|
319
|
+
- :list:
|
320
|
+
- :string
|
321
|
+
Deploy:
|
322
|
+
- :list:
|
323
|
+
- :string
|
324
|
+
Undeploy:
|
325
|
+
- :list:
|
326
|
+
- :string
|
327
|
+
Shutdown:
|
328
|
+
- :list:
|
329
|
+
- :string
|
330
|
+
InstallUpdatesOnBoot:
|
331
|
+
- :boolean
|
332
|
+
UseEbsOptimizedInstances:
|
333
|
+
- :boolean
|
334
|
+
:outputs:
|
335
|
+
LayerId:
|
336
|
+
:sym: :layer_id
|
337
|
+
:type: :string
|
338
|
+
- :name: CreateStack
|
339
|
+
:method: :create_stack
|
340
|
+
:inputs:
|
341
|
+
Name:
|
342
|
+
- :string
|
343
|
+
- :required
|
344
|
+
Region:
|
345
|
+
- :string
|
346
|
+
- :required
|
347
|
+
VpcId:
|
348
|
+
- :string
|
349
|
+
Attributes:
|
350
|
+
- :map:
|
351
|
+
:key:
|
352
|
+
- :string
|
353
|
+
:value:
|
354
|
+
- :string
|
355
|
+
ServiceRoleArn:
|
356
|
+
- :string
|
357
|
+
- :required
|
358
|
+
DefaultInstanceProfileArn:
|
359
|
+
- :string
|
360
|
+
- :required
|
361
|
+
DefaultOs:
|
362
|
+
- :string
|
363
|
+
HostnameTheme:
|
364
|
+
- :string
|
365
|
+
DefaultAvailabilityZone:
|
366
|
+
- :string
|
367
|
+
DefaultSubnetId:
|
368
|
+
- :string
|
369
|
+
CustomJson:
|
370
|
+
- :string
|
371
|
+
ConfigurationManager:
|
372
|
+
- :structure:
|
373
|
+
Name:
|
374
|
+
- :string
|
375
|
+
Version:
|
376
|
+
- :string
|
377
|
+
ChefConfiguration:
|
378
|
+
- :structure:
|
379
|
+
ManageBerkshelf:
|
380
|
+
- :boolean
|
381
|
+
BerkshelfVersion:
|
382
|
+
- :string
|
383
|
+
UseCustomCookbooks:
|
384
|
+
- :boolean
|
385
|
+
UseOpsworksSecurityGroups:
|
386
|
+
- :boolean
|
387
|
+
CustomCookbooksSource:
|
388
|
+
- :structure:
|
389
|
+
Type:
|
390
|
+
- :string
|
391
|
+
Url:
|
392
|
+
- :string
|
393
|
+
Username:
|
394
|
+
- :string
|
395
|
+
Password:
|
396
|
+
- :string
|
397
|
+
SshKey:
|
398
|
+
- :string
|
399
|
+
Revision:
|
400
|
+
- :string
|
401
|
+
DefaultSshKeyName:
|
402
|
+
- :string
|
403
|
+
DefaultRootDeviceType:
|
404
|
+
- :string
|
405
|
+
:outputs:
|
406
|
+
StackId:
|
407
|
+
:sym: :stack_id
|
408
|
+
:type: :string
|
409
|
+
- :name: CreateUserProfile
|
410
|
+
:method: :create_user_profile
|
411
|
+
:inputs:
|
412
|
+
IamUserArn:
|
413
|
+
- :string
|
414
|
+
- :required
|
415
|
+
SshUsername:
|
416
|
+
- :string
|
417
|
+
SshPublicKey:
|
418
|
+
- :string
|
419
|
+
AllowSelfManagement:
|
420
|
+
- :boolean
|
421
|
+
:outputs:
|
422
|
+
IamUserArn:
|
423
|
+
:sym: :iam_user_arn
|
424
|
+
:type: :string
|
425
|
+
- :name: DeleteApp
|
426
|
+
:method: :delete_app
|
427
|
+
:inputs:
|
428
|
+
AppId:
|
429
|
+
- :string
|
430
|
+
- :required
|
431
|
+
:outputs: {}
|
432
|
+
- :name: DeleteInstance
|
433
|
+
:method: :delete_instance
|
434
|
+
:inputs:
|
435
|
+
InstanceId:
|
436
|
+
- :string
|
437
|
+
- :required
|
438
|
+
DeleteElasticIp:
|
439
|
+
- :boolean
|
440
|
+
DeleteVolumes:
|
441
|
+
- :boolean
|
442
|
+
:outputs: {}
|
443
|
+
- :name: DeleteLayer
|
444
|
+
:method: :delete_layer
|
445
|
+
:inputs:
|
446
|
+
LayerId:
|
447
|
+
- :string
|
448
|
+
- :required
|
449
|
+
:outputs: {}
|
450
|
+
- :name: DeleteStack
|
451
|
+
:method: :delete_stack
|
452
|
+
:inputs:
|
453
|
+
StackId:
|
454
|
+
- :string
|
455
|
+
- :required
|
456
|
+
:outputs: {}
|
457
|
+
- :name: DeleteUserProfile
|
458
|
+
:method: :delete_user_profile
|
459
|
+
:inputs:
|
460
|
+
IamUserArn:
|
461
|
+
- :string
|
462
|
+
- :required
|
463
|
+
:outputs: {}
|
464
|
+
- :name: DeregisterElasticIp
|
465
|
+
:method: :deregister_elastic_ip
|
466
|
+
:inputs:
|
467
|
+
ElasticIp:
|
468
|
+
- :string
|
469
|
+
- :required
|
470
|
+
:outputs: {}
|
471
|
+
- :name: DeregisterRdsDbInstance
|
472
|
+
:method: :deregister_rds_db_instance
|
473
|
+
:inputs:
|
474
|
+
RdsDbInstanceArn:
|
475
|
+
- :string
|
476
|
+
- :required
|
477
|
+
:outputs: {}
|
478
|
+
- :name: DeregisterVolume
|
479
|
+
:method: :deregister_volume
|
480
|
+
:inputs:
|
481
|
+
VolumeId:
|
482
|
+
- :string
|
483
|
+
- :required
|
484
|
+
:outputs: {}
|
485
|
+
- :name: DescribeApps
|
486
|
+
:method: :describe_apps
|
487
|
+
:inputs:
|
488
|
+
StackId:
|
489
|
+
- :string
|
490
|
+
AppIds:
|
491
|
+
- :list:
|
492
|
+
- :string
|
493
|
+
:outputs:
|
494
|
+
Apps:
|
495
|
+
:sym: :apps
|
496
|
+
:type: :hash
|
497
|
+
:members:
|
498
|
+
AppId:
|
499
|
+
:sym: :app_id
|
500
|
+
:type: :string
|
501
|
+
StackId:
|
502
|
+
:sym: :stack_id
|
503
|
+
:type: :string
|
504
|
+
Shortname:
|
505
|
+
:sym: :shortname
|
506
|
+
:type: :string
|
507
|
+
Name:
|
508
|
+
:sym: :name
|
509
|
+
:type: :string
|
510
|
+
Description:
|
511
|
+
:sym: :description
|
512
|
+
:type: :string
|
513
|
+
DataSources:
|
514
|
+
:sym: :data_sources
|
515
|
+
:type: :hash
|
516
|
+
:members:
|
517
|
+
Type:
|
518
|
+
:sym: :type
|
519
|
+
:type: :string
|
520
|
+
Arn:
|
521
|
+
:sym: :arn
|
522
|
+
:type: :string
|
523
|
+
DatabaseName:
|
524
|
+
:sym: :database_name
|
525
|
+
:type: :string
|
526
|
+
Type:
|
527
|
+
:sym: :type
|
528
|
+
:type: :string
|
529
|
+
AppSource:
|
530
|
+
:sym: :app_source
|
531
|
+
:type: :hash
|
532
|
+
:members:
|
533
|
+
Type:
|
534
|
+
:sym: :type
|
535
|
+
:type: :string
|
536
|
+
Url:
|
537
|
+
:sym: :url
|
538
|
+
:type: :string
|
539
|
+
Username:
|
540
|
+
:sym: :username
|
541
|
+
:type: :string
|
542
|
+
Password:
|
543
|
+
:sym: :password
|
544
|
+
:type: :string
|
545
|
+
SshKey:
|
546
|
+
:sym: :ssh_key
|
547
|
+
:type: :string
|
548
|
+
Revision:
|
549
|
+
:sym: :revision
|
550
|
+
:type: :string
|
551
|
+
Domains:
|
552
|
+
:sym: :domains
|
553
|
+
:type: :string
|
554
|
+
EnableSsl:
|
555
|
+
:sym: :enable_ssl
|
556
|
+
:type: :boolean
|
557
|
+
SslConfiguration:
|
558
|
+
:sym: :ssl_configuration
|
559
|
+
:type: :hash
|
560
|
+
:members:
|
561
|
+
Certificate:
|
562
|
+
:sym: :certificate
|
563
|
+
:type: :string
|
564
|
+
PrivateKey:
|
565
|
+
:sym: :private_key
|
566
|
+
:type: :string
|
567
|
+
Chain:
|
568
|
+
:sym: :chain
|
569
|
+
:type: :string
|
570
|
+
Attributes:
|
571
|
+
:sym: :attributes
|
572
|
+
:type: :map
|
573
|
+
:members:
|
574
|
+
:sym: :map_value
|
575
|
+
:type: :string
|
576
|
+
CreatedAt:
|
577
|
+
:sym: :created_at
|
578
|
+
:type: :string
|
579
|
+
- :name: DescribeCommands
|
580
|
+
:method: :describe_commands
|
581
|
+
:inputs:
|
582
|
+
DeploymentId:
|
583
|
+
- :string
|
584
|
+
InstanceId:
|
585
|
+
- :string
|
586
|
+
CommandIds:
|
587
|
+
- :list:
|
588
|
+
- :string
|
589
|
+
:outputs:
|
590
|
+
Commands:
|
591
|
+
:sym: :commands
|
592
|
+
:type: :hash
|
593
|
+
:members:
|
594
|
+
CommandId:
|
595
|
+
:sym: :command_id
|
596
|
+
:type: :string
|
597
|
+
InstanceId:
|
598
|
+
:sym: :instance_id
|
599
|
+
:type: :string
|
600
|
+
DeploymentId:
|
601
|
+
:sym: :deployment_id
|
602
|
+
:type: :string
|
603
|
+
CreatedAt:
|
604
|
+
:sym: :created_at
|
605
|
+
:type: :string
|
606
|
+
AcknowledgedAt:
|
607
|
+
:sym: :acknowledged_at
|
608
|
+
:type: :string
|
609
|
+
CompletedAt:
|
610
|
+
:sym: :completed_at
|
611
|
+
:type: :string
|
612
|
+
Status:
|
613
|
+
:sym: :status
|
614
|
+
:type: :string
|
615
|
+
ExitCode:
|
616
|
+
:sym: :exit_code
|
617
|
+
:type: :integer
|
618
|
+
LogUrl:
|
619
|
+
:sym: :log_url
|
620
|
+
:type: :string
|
621
|
+
Type:
|
622
|
+
:sym: :type
|
623
|
+
:type: :string
|
624
|
+
- :name: DescribeDeployments
|
625
|
+
:method: :describe_deployments
|
626
|
+
:inputs:
|
627
|
+
StackId:
|
628
|
+
- :string
|
629
|
+
AppId:
|
630
|
+
- :string
|
631
|
+
DeploymentIds:
|
632
|
+
- :list:
|
633
|
+
- :string
|
634
|
+
:outputs:
|
635
|
+
Deployments:
|
636
|
+
:sym: :deployments
|
637
|
+
:type: :hash
|
638
|
+
:members:
|
639
|
+
DeploymentId:
|
640
|
+
:sym: :deployment_id
|
641
|
+
:type: :string
|
642
|
+
StackId:
|
643
|
+
:sym: :stack_id
|
644
|
+
:type: :string
|
645
|
+
AppId:
|
646
|
+
:sym: :app_id
|
647
|
+
:type: :string
|
648
|
+
CreatedAt:
|
649
|
+
:sym: :created_at
|
650
|
+
:type: :string
|
651
|
+
CompletedAt:
|
652
|
+
:sym: :completed_at
|
653
|
+
:type: :string
|
654
|
+
Duration:
|
655
|
+
:sym: :duration
|
656
|
+
:type: :integer
|
657
|
+
IamUserArn:
|
658
|
+
:sym: :iam_user_arn
|
659
|
+
:type: :string
|
660
|
+
Comment:
|
661
|
+
:sym: :comment
|
662
|
+
:type: :string
|
663
|
+
Command:
|
664
|
+
:sym: :command
|
665
|
+
:type: :hash
|
666
|
+
:members:
|
667
|
+
Name:
|
668
|
+
:sym: :name
|
669
|
+
:type: :string
|
670
|
+
Args:
|
671
|
+
:sym: :args
|
672
|
+
:type: :map
|
673
|
+
:members:
|
674
|
+
:sym: :value
|
675
|
+
:type: :string
|
676
|
+
Status:
|
677
|
+
:sym: :status
|
678
|
+
:type: :string
|
679
|
+
CustomJson:
|
680
|
+
:sym: :custom_json
|
681
|
+
:type: :string
|
682
|
+
InstanceIds:
|
683
|
+
:sym: :instance_ids
|
684
|
+
:type: :string
|
685
|
+
- :name: DescribeElasticIps
|
686
|
+
:method: :describe_elastic_ips
|
687
|
+
:inputs:
|
688
|
+
InstanceId:
|
689
|
+
- :string
|
690
|
+
StackId:
|
691
|
+
- :string
|
692
|
+
Ips:
|
693
|
+
- :list:
|
694
|
+
- :string
|
695
|
+
:outputs:
|
696
|
+
ElasticIps:
|
697
|
+
:sym: :elastic_ips
|
698
|
+
:type: :hash
|
699
|
+
:members:
|
700
|
+
Ip:
|
701
|
+
:sym: :ip
|
702
|
+
:type: :string
|
703
|
+
Name:
|
704
|
+
:sym: :name
|
705
|
+
:type: :string
|
706
|
+
Domain:
|
707
|
+
:sym: :domain
|
708
|
+
:type: :string
|
709
|
+
Region:
|
710
|
+
:sym: :region
|
711
|
+
:type: :string
|
712
|
+
InstanceId:
|
713
|
+
:sym: :instance_id
|
714
|
+
:type: :string
|
715
|
+
- :name: DescribeElasticLoadBalancers
|
716
|
+
:method: :describe_elastic_load_balancers
|
717
|
+
:inputs:
|
718
|
+
StackId:
|
719
|
+
- :string
|
720
|
+
LayerIds:
|
721
|
+
- :list:
|
722
|
+
- :string
|
723
|
+
:outputs:
|
724
|
+
ElasticLoadBalancers:
|
725
|
+
:sym: :elastic_load_balancers
|
726
|
+
:type: :hash
|
727
|
+
:members:
|
728
|
+
ElasticLoadBalancerName:
|
729
|
+
:sym: :elastic_load_balancer_name
|
730
|
+
:type: :string
|
731
|
+
Region:
|
732
|
+
:sym: :region
|
733
|
+
:type: :string
|
734
|
+
DnsName:
|
735
|
+
:sym: :dns_name
|
736
|
+
:type: :string
|
737
|
+
StackId:
|
738
|
+
:sym: :stack_id
|
739
|
+
:type: :string
|
740
|
+
LayerId:
|
741
|
+
:sym: :layer_id
|
742
|
+
:type: :string
|
743
|
+
VpcId:
|
744
|
+
:sym: :vpc_id
|
745
|
+
:type: :string
|
746
|
+
AvailabilityZones:
|
747
|
+
:sym: :availability_zones
|
748
|
+
:type: :string
|
749
|
+
SubnetIds:
|
750
|
+
:sym: :subnet_ids
|
751
|
+
:type: :string
|
752
|
+
Ec2InstanceIds:
|
753
|
+
:sym: :ec_2_instance_ids
|
754
|
+
:type: :string
|
755
|
+
- :name: DescribeInstances
|
756
|
+
:method: :describe_instances
|
757
|
+
:inputs:
|
758
|
+
StackId:
|
759
|
+
- :string
|
760
|
+
LayerId:
|
761
|
+
- :string
|
762
|
+
InstanceIds:
|
763
|
+
- :list:
|
764
|
+
- :string
|
765
|
+
:outputs:
|
766
|
+
Instances:
|
767
|
+
:sym: :instances
|
768
|
+
:type: :hash
|
769
|
+
:members:
|
770
|
+
InstanceId:
|
771
|
+
:sym: :instance_id
|
772
|
+
:type: :string
|
773
|
+
Ec2InstanceId:
|
774
|
+
:sym: :ec2_instance_id
|
775
|
+
:type: :string
|
776
|
+
VirtualizationType:
|
777
|
+
:sym: :virtualization_type
|
778
|
+
:type: :string
|
779
|
+
Hostname:
|
780
|
+
:sym: :hostname
|
781
|
+
:type: :string
|
782
|
+
StackId:
|
783
|
+
:sym: :stack_id
|
784
|
+
:type: :string
|
785
|
+
LayerIds:
|
786
|
+
:sym: :layer_ids
|
787
|
+
:type: :string
|
788
|
+
SecurityGroupIds:
|
789
|
+
:sym: :security_group_ids
|
790
|
+
:type: :string
|
791
|
+
InstanceType:
|
792
|
+
:sym: :instance_type
|
793
|
+
:type: :string
|
794
|
+
InstanceProfileArn:
|
795
|
+
:sym: :instance_profile_arn
|
796
|
+
:type: :string
|
797
|
+
Status:
|
798
|
+
:sym: :status
|
799
|
+
:type: :string
|
800
|
+
Os:
|
801
|
+
:sym: :os
|
802
|
+
:type: :string
|
803
|
+
AmiId:
|
804
|
+
:sym: :ami_id
|
805
|
+
:type: :string
|
806
|
+
AvailabilityZone:
|
807
|
+
:sym: :availability_zone
|
808
|
+
:type: :string
|
809
|
+
SubnetId:
|
810
|
+
:sym: :subnet_id
|
811
|
+
:type: :string
|
812
|
+
PublicDns:
|
813
|
+
:sym: :public_dns
|
814
|
+
:type: :string
|
815
|
+
PrivateDns:
|
816
|
+
:sym: :private_dns
|
817
|
+
:type: :string
|
818
|
+
PublicIp:
|
819
|
+
:sym: :public_ip
|
820
|
+
:type: :string
|
821
|
+
PrivateIp:
|
822
|
+
:sym: :private_ip
|
823
|
+
:type: :string
|
824
|
+
ElasticIp:
|
825
|
+
:sym: :elastic_ip
|
826
|
+
:type: :string
|
827
|
+
AutoScalingType:
|
828
|
+
:sym: :auto_scaling_type
|
829
|
+
:type: :string
|
830
|
+
SshKeyName:
|
831
|
+
:sym: :ssh_key_name
|
832
|
+
:type: :string
|
833
|
+
SshHostRsaKeyFingerprint:
|
834
|
+
:sym: :ssh_host_rsa_key_fingerprint
|
835
|
+
:type: :string
|
836
|
+
SshHostDsaKeyFingerprint:
|
837
|
+
:sym: :ssh_host_dsa_key_fingerprint
|
838
|
+
:type: :string
|
839
|
+
CreatedAt:
|
840
|
+
:sym: :created_at
|
841
|
+
:type: :string
|
842
|
+
LastServiceErrorId:
|
843
|
+
:sym: :last_service_error_id
|
844
|
+
:type: :string
|
845
|
+
Architecture:
|
846
|
+
:sym: :architecture
|
847
|
+
:type: :string
|
848
|
+
RootDeviceType:
|
849
|
+
:sym: :root_device_type
|
850
|
+
:type: :string
|
851
|
+
RootDeviceVolumeId:
|
852
|
+
:sym: :root_device_volume_id
|
853
|
+
:type: :string
|
854
|
+
InstallUpdatesOnBoot:
|
855
|
+
:sym: :install_updates_on_boot
|
856
|
+
:type: :boolean
|
857
|
+
EbsOptimized:
|
858
|
+
:sym: :ebs_optimized
|
859
|
+
:type: :boolean
|
860
|
+
- :name: DescribeLayers
|
861
|
+
:method: :describe_layers
|
862
|
+
:inputs:
|
863
|
+
StackId:
|
864
|
+
- :string
|
865
|
+
LayerIds:
|
866
|
+
- :list:
|
867
|
+
- :string
|
868
|
+
:outputs:
|
869
|
+
Layers:
|
870
|
+
:sym: :layers
|
871
|
+
:type: :hash
|
872
|
+
:members:
|
873
|
+
StackId:
|
874
|
+
:sym: :stack_id
|
875
|
+
:type: :string
|
876
|
+
LayerId:
|
877
|
+
:sym: :layer_id
|
878
|
+
:type: :string
|
879
|
+
Type:
|
880
|
+
:sym: :type
|
881
|
+
:type: :string
|
882
|
+
Name:
|
883
|
+
:sym: :name
|
884
|
+
:type: :string
|
885
|
+
Shortname:
|
886
|
+
:sym: :shortname
|
887
|
+
:type: :string
|
888
|
+
Attributes:
|
889
|
+
:sym: :attributes
|
890
|
+
:type: :map
|
891
|
+
:members:
|
892
|
+
:sym: :map_value
|
893
|
+
:type: :string
|
894
|
+
CustomInstanceProfileArn:
|
895
|
+
:sym: :custom_instance_profile_arn
|
896
|
+
:type: :string
|
897
|
+
CustomSecurityGroupIds:
|
898
|
+
:sym: :custom_security_group_ids
|
899
|
+
:type: :string
|
900
|
+
DefaultSecurityGroupNames:
|
901
|
+
:sym: :default_security_group_names
|
902
|
+
:type: :string
|
903
|
+
Packages:
|
904
|
+
:sym: :packages
|
905
|
+
:type: :string
|
906
|
+
VolumeConfigurations:
|
907
|
+
:sym: :volume_configurations
|
908
|
+
:type: :hash
|
909
|
+
:members:
|
910
|
+
MountPoint:
|
911
|
+
:sym: :mount_point
|
912
|
+
:type: :string
|
913
|
+
RaidLevel:
|
914
|
+
:sym: :raid_level
|
915
|
+
:type: :integer
|
916
|
+
NumberOfDisks:
|
917
|
+
:sym: :number_of_disks
|
918
|
+
:type: :integer
|
919
|
+
Size:
|
920
|
+
:sym: :size
|
921
|
+
:type: :integer
|
922
|
+
VolumeType:
|
923
|
+
:sym: :volume_type
|
924
|
+
:type: :string
|
925
|
+
Iops:
|
926
|
+
:sym: :iops
|
927
|
+
:type: :integer
|
928
|
+
EnableAutoHealing:
|
929
|
+
:sym: :enable_auto_healing
|
930
|
+
:type: :boolean
|
931
|
+
AutoAssignElasticIps:
|
932
|
+
:sym: :auto_assign_elastic_ips
|
933
|
+
:type: :boolean
|
934
|
+
AutoAssignPublicIps:
|
935
|
+
:sym: :auto_assign_public_ips
|
936
|
+
:type: :boolean
|
937
|
+
DefaultRecipes:
|
938
|
+
:sym: :default_recipes
|
939
|
+
:type: :hash
|
940
|
+
:members:
|
941
|
+
Setup:
|
942
|
+
:sym: :setup
|
943
|
+
:type: :string
|
944
|
+
Configure:
|
945
|
+
:sym: :configure
|
946
|
+
:type: :string
|
947
|
+
Deploy:
|
948
|
+
:sym: :deploy
|
949
|
+
:type: :string
|
950
|
+
Undeploy:
|
951
|
+
:sym: :undeploy
|
952
|
+
:type: :string
|
953
|
+
Shutdown:
|
954
|
+
:sym: :shutdown
|
955
|
+
:type: :string
|
956
|
+
CustomRecipes:
|
957
|
+
:sym: :custom_recipes
|
958
|
+
:type: :hash
|
959
|
+
:members:
|
960
|
+
Setup:
|
961
|
+
:sym: :setup
|
962
|
+
:type: :string
|
963
|
+
Configure:
|
964
|
+
:sym: :configure
|
965
|
+
:type: :string
|
966
|
+
Deploy:
|
967
|
+
:sym: :deploy
|
968
|
+
:type: :string
|
969
|
+
Undeploy:
|
970
|
+
:sym: :undeploy
|
971
|
+
:type: :string
|
972
|
+
Shutdown:
|
973
|
+
:sym: :shutdown
|
974
|
+
:type: :string
|
975
|
+
CreatedAt:
|
976
|
+
:sym: :created_at
|
977
|
+
:type: :string
|
978
|
+
InstallUpdatesOnBoot:
|
979
|
+
:sym: :install_updates_on_boot
|
980
|
+
:type: :boolean
|
981
|
+
UseEbsOptimizedInstances:
|
982
|
+
:sym: :use_ebs_optimized_instances
|
983
|
+
:type: :boolean
|
984
|
+
- :name: DescribeLoadBasedAutoScaling
|
985
|
+
:method: :describe_load_based_auto_scaling
|
986
|
+
:inputs:
|
987
|
+
LayerIds:
|
988
|
+
- :list:
|
989
|
+
- :string
|
990
|
+
- :required
|
991
|
+
:outputs:
|
992
|
+
LoadBasedAutoScalingConfigurations:
|
993
|
+
:sym: :load_based_auto_scaling_configurations
|
994
|
+
:type: :hash
|
995
|
+
:members:
|
996
|
+
LayerId:
|
997
|
+
:sym: :layer_id
|
998
|
+
:type: :string
|
999
|
+
Enable:
|
1000
|
+
:sym: :enable
|
1001
|
+
:type: :boolean
|
1002
|
+
UpScaling:
|
1003
|
+
:sym: :up_scaling
|
1004
|
+
:type: :hash
|
1005
|
+
:members:
|
1006
|
+
InstanceCount:
|
1007
|
+
:sym: :instance_count
|
1008
|
+
:type: :integer
|
1009
|
+
ThresholdsWaitTime:
|
1010
|
+
:sym: :thresholds_wait_time
|
1011
|
+
:type: :integer
|
1012
|
+
IgnoreMetricsTime:
|
1013
|
+
:sym: :ignore_metrics_time
|
1014
|
+
:type: :integer
|
1015
|
+
CpuThreshold:
|
1016
|
+
:sym: :cpu_threshold
|
1017
|
+
:type: :float
|
1018
|
+
MemoryThreshold:
|
1019
|
+
:sym: :memory_threshold
|
1020
|
+
:type: :float
|
1021
|
+
LoadThreshold:
|
1022
|
+
:sym: :load_threshold
|
1023
|
+
:type: :float
|
1024
|
+
DownScaling:
|
1025
|
+
:sym: :down_scaling
|
1026
|
+
:type: :hash
|
1027
|
+
:members:
|
1028
|
+
InstanceCount:
|
1029
|
+
:sym: :instance_count
|
1030
|
+
:type: :integer
|
1031
|
+
ThresholdsWaitTime:
|
1032
|
+
:sym: :thresholds_wait_time
|
1033
|
+
:type: :integer
|
1034
|
+
IgnoreMetricsTime:
|
1035
|
+
:sym: :ignore_metrics_time
|
1036
|
+
:type: :integer
|
1037
|
+
CpuThreshold:
|
1038
|
+
:sym: :cpu_threshold
|
1039
|
+
:type: :float
|
1040
|
+
MemoryThreshold:
|
1041
|
+
:sym: :memory_threshold
|
1042
|
+
:type: :float
|
1043
|
+
LoadThreshold:
|
1044
|
+
:sym: :load_threshold
|
1045
|
+
:type: :float
|
1046
|
+
- :name: DescribeMyUserProfile
|
1047
|
+
:method: :describe_my_user_profile
|
1048
|
+
:inputs: {}
|
1049
|
+
:outputs:
|
1050
|
+
UserProfile:
|
1051
|
+
:sym: :user_profile
|
1052
|
+
:type: :hash
|
1053
|
+
:members:
|
1054
|
+
IamUserArn:
|
1055
|
+
:sym: :iam_user_arn
|
1056
|
+
:type: :string
|
1057
|
+
Name:
|
1058
|
+
:sym: :name
|
1059
|
+
:type: :string
|
1060
|
+
SshUsername:
|
1061
|
+
:sym: :ssh_username
|
1062
|
+
:type: :string
|
1063
|
+
SshPublicKey:
|
1064
|
+
:sym: :ssh_public_key
|
1065
|
+
:type: :string
|
1066
|
+
- :name: DescribePermissions
|
1067
|
+
:method: :describe_permissions
|
1068
|
+
:inputs:
|
1069
|
+
IamUserArn:
|
1070
|
+
- :string
|
1071
|
+
StackId:
|
1072
|
+
- :string
|
1073
|
+
:outputs:
|
1074
|
+
Permissions:
|
1075
|
+
:sym: :permissions
|
1076
|
+
:type: :hash
|
1077
|
+
:members:
|
1078
|
+
StackId:
|
1079
|
+
:sym: :stack_id
|
1080
|
+
:type: :string
|
1081
|
+
IamUserArn:
|
1082
|
+
:sym: :iam_user_arn
|
1083
|
+
:type: :string
|
1084
|
+
AllowSsh:
|
1085
|
+
:sym: :allow_ssh
|
1086
|
+
:type: :boolean
|
1087
|
+
AllowSudo:
|
1088
|
+
:sym: :allow_sudo
|
1089
|
+
:type: :boolean
|
1090
|
+
Level:
|
1091
|
+
:sym: :level
|
1092
|
+
:type: :string
|
1093
|
+
- :name: DescribeRaidArrays
|
1094
|
+
:method: :describe_raid_arrays
|
1095
|
+
:inputs:
|
1096
|
+
InstanceId:
|
1097
|
+
- :string
|
1098
|
+
RaidArrayIds:
|
1099
|
+
- :list:
|
1100
|
+
- :string
|
1101
|
+
:outputs:
|
1102
|
+
RaidArrays:
|
1103
|
+
:sym: :raid_arrays
|
1104
|
+
:type: :hash
|
1105
|
+
:members:
|
1106
|
+
RaidArrayId:
|
1107
|
+
:sym: :raid_array_id
|
1108
|
+
:type: :string
|
1109
|
+
InstanceId:
|
1110
|
+
:sym: :instance_id
|
1111
|
+
:type: :string
|
1112
|
+
Name:
|
1113
|
+
:sym: :name
|
1114
|
+
:type: :string
|
1115
|
+
RaidLevel:
|
1116
|
+
:sym: :raid_level
|
1117
|
+
:type: :integer
|
1118
|
+
NumberOfDisks:
|
1119
|
+
:sym: :number_of_disks
|
1120
|
+
:type: :integer
|
1121
|
+
Size:
|
1122
|
+
:sym: :size
|
1123
|
+
:type: :integer
|
1124
|
+
Device:
|
1125
|
+
:sym: :device
|
1126
|
+
:type: :string
|
1127
|
+
MountPoint:
|
1128
|
+
:sym: :mount_point
|
1129
|
+
:type: :string
|
1130
|
+
AvailabilityZone:
|
1131
|
+
:sym: :availability_zone
|
1132
|
+
:type: :string
|
1133
|
+
CreatedAt:
|
1134
|
+
:sym: :created_at
|
1135
|
+
:type: :string
|
1136
|
+
VolumeType:
|
1137
|
+
:sym: :volume_type
|
1138
|
+
:type: :string
|
1139
|
+
Iops:
|
1140
|
+
:sym: :iops
|
1141
|
+
:type: :integer
|
1142
|
+
- :name: DescribeRdsDbInstances
|
1143
|
+
:method: :describe_rds_db_instances
|
1144
|
+
:inputs:
|
1145
|
+
StackId:
|
1146
|
+
- :string
|
1147
|
+
- :required
|
1148
|
+
RdsDbInstanceArns:
|
1149
|
+
- :list:
|
1150
|
+
- :string
|
1151
|
+
:outputs:
|
1152
|
+
RdsDbInstances:
|
1153
|
+
:sym: :rds_db_instances
|
1154
|
+
:type: :hash
|
1155
|
+
:members:
|
1156
|
+
RdsDbInstanceArn:
|
1157
|
+
:sym: :rds_db_instance_arn
|
1158
|
+
:type: :string
|
1159
|
+
DbInstanceIdentifier:
|
1160
|
+
:sym: :db_instance_identifier
|
1161
|
+
:type: :string
|
1162
|
+
DbUser:
|
1163
|
+
:sym: :db_user
|
1164
|
+
:type: :string
|
1165
|
+
DbPassword:
|
1166
|
+
:sym: :db_password
|
1167
|
+
:type: :string
|
1168
|
+
Region:
|
1169
|
+
:sym: :region
|
1170
|
+
:type: :string
|
1171
|
+
Address:
|
1172
|
+
:sym: :address
|
1173
|
+
:type: :string
|
1174
|
+
Engine:
|
1175
|
+
:sym: :engine
|
1176
|
+
:type: :string
|
1177
|
+
StackId:
|
1178
|
+
:sym: :stack_id
|
1179
|
+
:type: :string
|
1180
|
+
MissingOnRds:
|
1181
|
+
:sym: :missing_on_rds
|
1182
|
+
:type: :boolean
|
1183
|
+
- :name: DescribeServiceErrors
|
1184
|
+
:method: :describe_service_errors
|
1185
|
+
:inputs:
|
1186
|
+
StackId:
|
1187
|
+
- :string
|
1188
|
+
InstanceId:
|
1189
|
+
- :string
|
1190
|
+
ServiceErrorIds:
|
1191
|
+
- :list:
|
1192
|
+
- :string
|
1193
|
+
:outputs:
|
1194
|
+
ServiceErrors:
|
1195
|
+
:sym: :service_errors
|
1196
|
+
:type: :hash
|
1197
|
+
:members:
|
1198
|
+
ServiceErrorId:
|
1199
|
+
:sym: :service_error_id
|
1200
|
+
:type: :string
|
1201
|
+
StackId:
|
1202
|
+
:sym: :stack_id
|
1203
|
+
:type: :string
|
1204
|
+
InstanceId:
|
1205
|
+
:sym: :instance_id
|
1206
|
+
:type: :string
|
1207
|
+
Type:
|
1208
|
+
:sym: :type
|
1209
|
+
:type: :string
|
1210
|
+
Message:
|
1211
|
+
:sym: :message
|
1212
|
+
:type: :string
|
1213
|
+
CreatedAt:
|
1214
|
+
:sym: :created_at
|
1215
|
+
:type: :string
|
1216
|
+
- :name: DescribeStackSummary
|
1217
|
+
:method: :describe_stack_summary
|
1218
|
+
:inputs:
|
1219
|
+
StackId:
|
1220
|
+
- :string
|
1221
|
+
- :required
|
1222
|
+
:outputs:
|
1223
|
+
StackSummary:
|
1224
|
+
:sym: :stack_summary
|
1225
|
+
:type: :hash
|
1226
|
+
:members:
|
1227
|
+
StackId:
|
1228
|
+
:sym: :stack_id
|
1229
|
+
:type: :string
|
1230
|
+
Name:
|
1231
|
+
:sym: :name
|
1232
|
+
:type: :string
|
1233
|
+
Arn:
|
1234
|
+
:sym: :arn
|
1235
|
+
:type: :string
|
1236
|
+
LayersCount:
|
1237
|
+
:sym: :layers_count
|
1238
|
+
:type: :integer
|
1239
|
+
AppsCount:
|
1240
|
+
:sym: :apps_count
|
1241
|
+
:type: :integer
|
1242
|
+
InstancesCount:
|
1243
|
+
:sym: :instances_count
|
1244
|
+
:type: :hash
|
1245
|
+
:members:
|
1246
|
+
Booting:
|
1247
|
+
:sym: :booting
|
1248
|
+
:type: :integer
|
1249
|
+
ConnectionLost:
|
1250
|
+
:sym: :connection_lost
|
1251
|
+
:type: :integer
|
1252
|
+
Online:
|
1253
|
+
:sym: :online
|
1254
|
+
:type: :integer
|
1255
|
+
Pending:
|
1256
|
+
:sym: :pending
|
1257
|
+
:type: :integer
|
1258
|
+
Rebooting:
|
1259
|
+
:sym: :rebooting
|
1260
|
+
:type: :integer
|
1261
|
+
Requested:
|
1262
|
+
:sym: :requested
|
1263
|
+
:type: :integer
|
1264
|
+
RunningSetup:
|
1265
|
+
:sym: :running_setup
|
1266
|
+
:type: :integer
|
1267
|
+
SetupFailed:
|
1268
|
+
:sym: :setup_failed
|
1269
|
+
:type: :integer
|
1270
|
+
ShuttingDown:
|
1271
|
+
:sym: :shutting_down
|
1272
|
+
:type: :integer
|
1273
|
+
StartFailed:
|
1274
|
+
:sym: :start_failed
|
1275
|
+
:type: :integer
|
1276
|
+
Stopped:
|
1277
|
+
:sym: :stopped
|
1278
|
+
:type: :integer
|
1279
|
+
Stopping:
|
1280
|
+
:sym: :stopping
|
1281
|
+
:type: :integer
|
1282
|
+
Terminated:
|
1283
|
+
:sym: :terminated
|
1284
|
+
:type: :integer
|
1285
|
+
Terminating:
|
1286
|
+
:sym: :terminating
|
1287
|
+
:type: :integer
|
1288
|
+
- :name: DescribeStacks
|
1289
|
+
:method: :describe_stacks
|
1290
|
+
:inputs:
|
1291
|
+
StackIds:
|
1292
|
+
- :list:
|
1293
|
+
- :string
|
1294
|
+
:outputs:
|
1295
|
+
Stacks:
|
1296
|
+
:sym: :stacks
|
1297
|
+
:type: :hash
|
1298
|
+
:members:
|
1299
|
+
StackId:
|
1300
|
+
:sym: :stack_id
|
1301
|
+
:type: :string
|
1302
|
+
Name:
|
1303
|
+
:sym: :name
|
1304
|
+
:type: :string
|
1305
|
+
Arn:
|
1306
|
+
:sym: :arn
|
1307
|
+
:type: :string
|
1308
|
+
Region:
|
1309
|
+
:sym: :region
|
1310
|
+
:type: :string
|
1311
|
+
VpcId:
|
1312
|
+
:sym: :vpc_id
|
1313
|
+
:type: :string
|
1314
|
+
Attributes:
|
1315
|
+
:sym: :attributes
|
1316
|
+
:type: :map
|
1317
|
+
:members:
|
1318
|
+
:sym: :map_value
|
1319
|
+
:type: :string
|
1320
|
+
ServiceRoleArn:
|
1321
|
+
:sym: :service_role_arn
|
1322
|
+
:type: :string
|
1323
|
+
DefaultInstanceProfileArn:
|
1324
|
+
:sym: :default_instance_profile_arn
|
1325
|
+
:type: :string
|
1326
|
+
DefaultOs:
|
1327
|
+
:sym: :default_os
|
1328
|
+
:type: :string
|
1329
|
+
HostnameTheme:
|
1330
|
+
:sym: :hostname_theme
|
1331
|
+
:type: :string
|
1332
|
+
DefaultAvailabilityZone:
|
1333
|
+
:sym: :default_availability_zone
|
1334
|
+
:type: :string
|
1335
|
+
DefaultSubnetId:
|
1336
|
+
:sym: :default_subnet_id
|
1337
|
+
:type: :string
|
1338
|
+
CustomJson:
|
1339
|
+
:sym: :custom_json
|
1340
|
+
:type: :string
|
1341
|
+
ConfigurationManager:
|
1342
|
+
:sym: :configuration_manager
|
1343
|
+
:type: :hash
|
1344
|
+
:members:
|
1345
|
+
Name:
|
1346
|
+
:sym: :name
|
1347
|
+
:type: :string
|
1348
|
+
Version:
|
1349
|
+
:sym: :version
|
1350
|
+
:type: :string
|
1351
|
+
ChefConfiguration:
|
1352
|
+
:sym: :chef_configuration
|
1353
|
+
:type: :hash
|
1354
|
+
:members:
|
1355
|
+
ManageBerkshelf:
|
1356
|
+
:sym: :manage_berkshelf
|
1357
|
+
:type: :boolean
|
1358
|
+
BerkshelfVersion:
|
1359
|
+
:sym: :berkshelf_version
|
1360
|
+
:type: :string
|
1361
|
+
UseCustomCookbooks:
|
1362
|
+
:sym: :use_custom_cookbooks
|
1363
|
+
:type: :boolean
|
1364
|
+
UseOpsworksSecurityGroups:
|
1365
|
+
:sym: :use_opsworks_security_groups
|
1366
|
+
:type: :boolean
|
1367
|
+
CustomCookbooksSource:
|
1368
|
+
:sym: :custom_cookbooks_source
|
1369
|
+
:type: :hash
|
1370
|
+
:members:
|
1371
|
+
Type:
|
1372
|
+
:sym: :type
|
1373
|
+
:type: :string
|
1374
|
+
Url:
|
1375
|
+
:sym: :url
|
1376
|
+
:type: :string
|
1377
|
+
Username:
|
1378
|
+
:sym: :username
|
1379
|
+
:type: :string
|
1380
|
+
Password:
|
1381
|
+
:sym: :password
|
1382
|
+
:type: :string
|
1383
|
+
SshKey:
|
1384
|
+
:sym: :ssh_key
|
1385
|
+
:type: :string
|
1386
|
+
Revision:
|
1387
|
+
:sym: :revision
|
1388
|
+
:type: :string
|
1389
|
+
DefaultSshKeyName:
|
1390
|
+
:sym: :default_ssh_key_name
|
1391
|
+
:type: :string
|
1392
|
+
CreatedAt:
|
1393
|
+
:sym: :created_at
|
1394
|
+
:type: :string
|
1395
|
+
DefaultRootDeviceType:
|
1396
|
+
:sym: :default_root_device_type
|
1397
|
+
:type: :string
|
1398
|
+
- :name: DescribeTimeBasedAutoScaling
|
1399
|
+
:method: :describe_time_based_auto_scaling
|
1400
|
+
:inputs:
|
1401
|
+
InstanceIds:
|
1402
|
+
- :list:
|
1403
|
+
- :string
|
1404
|
+
- :required
|
1405
|
+
:outputs:
|
1406
|
+
TimeBasedAutoScalingConfigurations:
|
1407
|
+
:sym: :time_based_auto_scaling_configurations
|
1408
|
+
:type: :hash
|
1409
|
+
:members:
|
1410
|
+
InstanceId:
|
1411
|
+
:sym: :instance_id
|
1412
|
+
:type: :string
|
1413
|
+
AutoScalingSchedule:
|
1414
|
+
:sym: :auto_scaling_schedule
|
1415
|
+
:type: :hash
|
1416
|
+
:members:
|
1417
|
+
Monday:
|
1418
|
+
:sym: :monday
|
1419
|
+
:type: :map
|
1420
|
+
:members:
|
1421
|
+
:sym: :map_value
|
1422
|
+
:type: :string
|
1423
|
+
Tuesday:
|
1424
|
+
:sym: :tuesday
|
1425
|
+
:type: :map
|
1426
|
+
:members:
|
1427
|
+
:sym: :map_value
|
1428
|
+
:type: :string
|
1429
|
+
Wednesday:
|
1430
|
+
:sym: :wednesday
|
1431
|
+
:type: :map
|
1432
|
+
:members:
|
1433
|
+
:sym: :map_value
|
1434
|
+
:type: :string
|
1435
|
+
Thursday:
|
1436
|
+
:sym: :thursday
|
1437
|
+
:type: :map
|
1438
|
+
:members:
|
1439
|
+
:sym: :map_value
|
1440
|
+
:type: :string
|
1441
|
+
Friday:
|
1442
|
+
:sym: :friday
|
1443
|
+
:type: :map
|
1444
|
+
:members:
|
1445
|
+
:sym: :map_value
|
1446
|
+
:type: :string
|
1447
|
+
Saturday:
|
1448
|
+
:sym: :saturday
|
1449
|
+
:type: :map
|
1450
|
+
:members:
|
1451
|
+
:sym: :map_value
|
1452
|
+
:type: :string
|
1453
|
+
Sunday:
|
1454
|
+
:sym: :sunday
|
1455
|
+
:type: :map
|
1456
|
+
:members:
|
1457
|
+
:sym: :map_value
|
1458
|
+
:type: :string
|
1459
|
+
- :name: DescribeUserProfiles
|
1460
|
+
:method: :describe_user_profiles
|
1461
|
+
:inputs:
|
1462
|
+
IamUserArns:
|
1463
|
+
- :list:
|
1464
|
+
- :string
|
1465
|
+
:outputs:
|
1466
|
+
UserProfiles:
|
1467
|
+
:sym: :user_profiles
|
1468
|
+
:type: :hash
|
1469
|
+
:members:
|
1470
|
+
IamUserArn:
|
1471
|
+
:sym: :iam_user_arn
|
1472
|
+
:type: :string
|
1473
|
+
Name:
|
1474
|
+
:sym: :name
|
1475
|
+
:type: :string
|
1476
|
+
SshUsername:
|
1477
|
+
:sym: :ssh_username
|
1478
|
+
:type: :string
|
1479
|
+
SshPublicKey:
|
1480
|
+
:sym: :ssh_public_key
|
1481
|
+
:type: :string
|
1482
|
+
AllowSelfManagement:
|
1483
|
+
:sym: :allow_self_management
|
1484
|
+
:type: :boolean
|
1485
|
+
- :name: DescribeVolumes
|
1486
|
+
:method: :describe_volumes
|
1487
|
+
:inputs:
|
1488
|
+
InstanceId:
|
1489
|
+
- :string
|
1490
|
+
StackId:
|
1491
|
+
- :string
|
1492
|
+
RaidArrayId:
|
1493
|
+
- :string
|
1494
|
+
VolumeIds:
|
1495
|
+
- :list:
|
1496
|
+
- :string
|
1497
|
+
:outputs:
|
1498
|
+
Volumes:
|
1499
|
+
:sym: :volumes
|
1500
|
+
:type: :hash
|
1501
|
+
:members:
|
1502
|
+
VolumeId:
|
1503
|
+
:sym: :volume_id
|
1504
|
+
:type: :string
|
1505
|
+
Ec2VolumeId:
|
1506
|
+
:sym: :ec2_volume_id
|
1507
|
+
:type: :string
|
1508
|
+
Name:
|
1509
|
+
:sym: :name
|
1510
|
+
:type: :string
|
1511
|
+
RaidArrayId:
|
1512
|
+
:sym: :raid_array_id
|
1513
|
+
:type: :string
|
1514
|
+
InstanceId:
|
1515
|
+
:sym: :instance_id
|
1516
|
+
:type: :string
|
1517
|
+
Status:
|
1518
|
+
:sym: :status
|
1519
|
+
:type: :string
|
1520
|
+
Size:
|
1521
|
+
:sym: :size
|
1522
|
+
:type: :integer
|
1523
|
+
Device:
|
1524
|
+
:sym: :device
|
1525
|
+
:type: :string
|
1526
|
+
MountPoint:
|
1527
|
+
:sym: :mount_point
|
1528
|
+
:type: :string
|
1529
|
+
Region:
|
1530
|
+
:sym: :region
|
1531
|
+
:type: :string
|
1532
|
+
AvailabilityZone:
|
1533
|
+
:sym: :availability_zone
|
1534
|
+
:type: :string
|
1535
|
+
VolumeType:
|
1536
|
+
:sym: :volume_type
|
1537
|
+
:type: :string
|
1538
|
+
Iops:
|
1539
|
+
:sym: :iops
|
1540
|
+
:type: :integer
|
1541
|
+
- :name: DetachElasticLoadBalancer
|
1542
|
+
:method: :detach_elastic_load_balancer
|
1543
|
+
:inputs:
|
1544
|
+
ElasticLoadBalancerName:
|
1545
|
+
- :string
|
1546
|
+
- :required
|
1547
|
+
LayerId:
|
1548
|
+
- :string
|
1549
|
+
- :required
|
1550
|
+
:outputs: {}
|
1551
|
+
- :name: DisassociateElasticIp
|
1552
|
+
:method: :disassociate_elastic_ip
|
1553
|
+
:inputs:
|
1554
|
+
ElasticIp:
|
1555
|
+
- :string
|
1556
|
+
- :required
|
1557
|
+
:outputs: {}
|
1558
|
+
- :name: GetHostnameSuggestion
|
1559
|
+
:method: :get_hostname_suggestion
|
1560
|
+
:inputs:
|
1561
|
+
LayerId:
|
1562
|
+
- :string
|
1563
|
+
- :required
|
1564
|
+
:outputs:
|
1565
|
+
LayerId:
|
1566
|
+
:sym: :layer_id
|
1567
|
+
:type: :string
|
1568
|
+
Hostname:
|
1569
|
+
:sym: :hostname
|
1570
|
+
:type: :string
|
1571
|
+
- :name: RebootInstance
|
1572
|
+
:method: :reboot_instance
|
1573
|
+
:inputs:
|
1574
|
+
InstanceId:
|
1575
|
+
- :string
|
1576
|
+
- :required
|
1577
|
+
:outputs: {}
|
1578
|
+
- :name: RegisterElasticIp
|
1579
|
+
:method: :register_elastic_ip
|
1580
|
+
:inputs:
|
1581
|
+
ElasticIp:
|
1582
|
+
- :string
|
1583
|
+
- :required
|
1584
|
+
StackId:
|
1585
|
+
- :string
|
1586
|
+
- :required
|
1587
|
+
:outputs:
|
1588
|
+
ElasticIp:
|
1589
|
+
:sym: :elastic_ip
|
1590
|
+
:type: :string
|
1591
|
+
- :name: RegisterRdsDbInstance
|
1592
|
+
:method: :register_rds_db_instance
|
1593
|
+
:inputs:
|
1594
|
+
StackId:
|
1595
|
+
- :string
|
1596
|
+
- :required
|
1597
|
+
RdsDbInstanceArn:
|
1598
|
+
- :string
|
1599
|
+
- :required
|
1600
|
+
DbUser:
|
1601
|
+
- :string
|
1602
|
+
- :required
|
1603
|
+
DbPassword:
|
1604
|
+
- :string
|
1605
|
+
- :required
|
1606
|
+
:outputs: {}
|
1607
|
+
- :name: RegisterVolume
|
1608
|
+
:method: :register_volume
|
1609
|
+
:inputs:
|
1610
|
+
Ec2VolumeId:
|
1611
|
+
- :string
|
1612
|
+
StackId:
|
1613
|
+
- :string
|
1614
|
+
- :required
|
1615
|
+
:outputs:
|
1616
|
+
VolumeId:
|
1617
|
+
:sym: :volume_id
|
1618
|
+
:type: :string
|
1619
|
+
- :name: SetLoadBasedAutoScaling
|
1620
|
+
:method: :set_load_based_auto_scaling
|
1621
|
+
:inputs:
|
1622
|
+
LayerId:
|
1623
|
+
- :string
|
1624
|
+
- :required
|
1625
|
+
Enable:
|
1626
|
+
- :boolean
|
1627
|
+
UpScaling:
|
1628
|
+
- :structure:
|
1629
|
+
InstanceCount:
|
1630
|
+
- :integer
|
1631
|
+
ThresholdsWaitTime:
|
1632
|
+
- :integer
|
1633
|
+
IgnoreMetricsTime:
|
1634
|
+
- :integer
|
1635
|
+
CpuThreshold:
|
1636
|
+
- :double
|
1637
|
+
MemoryThreshold:
|
1638
|
+
- :double
|
1639
|
+
LoadThreshold:
|
1640
|
+
- :double
|
1641
|
+
DownScaling:
|
1642
|
+
- :structure:
|
1643
|
+
InstanceCount:
|
1644
|
+
- :integer
|
1645
|
+
ThresholdsWaitTime:
|
1646
|
+
- :integer
|
1647
|
+
IgnoreMetricsTime:
|
1648
|
+
- :integer
|
1649
|
+
CpuThreshold:
|
1650
|
+
- :double
|
1651
|
+
MemoryThreshold:
|
1652
|
+
- :double
|
1653
|
+
LoadThreshold:
|
1654
|
+
- :double
|
1655
|
+
:outputs: {}
|
1656
|
+
- :name: SetPermission
|
1657
|
+
:method: :set_permission
|
1658
|
+
:inputs:
|
1659
|
+
StackId:
|
1660
|
+
- :string
|
1661
|
+
- :required
|
1662
|
+
IamUserArn:
|
1663
|
+
- :string
|
1664
|
+
- :required
|
1665
|
+
AllowSsh:
|
1666
|
+
- :boolean
|
1667
|
+
AllowSudo:
|
1668
|
+
- :boolean
|
1669
|
+
Level:
|
1670
|
+
- :string
|
1671
|
+
:outputs: {}
|
1672
|
+
- :name: SetTimeBasedAutoScaling
|
1673
|
+
:method: :set_time_based_auto_scaling
|
1674
|
+
:inputs:
|
1675
|
+
InstanceId:
|
1676
|
+
- :string
|
1677
|
+
- :required
|
1678
|
+
AutoScalingSchedule:
|
1679
|
+
- :structure:
|
1680
|
+
Monday:
|
1681
|
+
- :map:
|
1682
|
+
:key:
|
1683
|
+
- :string
|
1684
|
+
:value:
|
1685
|
+
- :string
|
1686
|
+
Tuesday:
|
1687
|
+
- :map:
|
1688
|
+
:key:
|
1689
|
+
- :string
|
1690
|
+
:value:
|
1691
|
+
- :string
|
1692
|
+
Wednesday:
|
1693
|
+
- :map:
|
1694
|
+
:key:
|
1695
|
+
- :string
|
1696
|
+
:value:
|
1697
|
+
- :string
|
1698
|
+
Thursday:
|
1699
|
+
- :map:
|
1700
|
+
:key:
|
1701
|
+
- :string
|
1702
|
+
:value:
|
1703
|
+
- :string
|
1704
|
+
Friday:
|
1705
|
+
- :map:
|
1706
|
+
:key:
|
1707
|
+
- :string
|
1708
|
+
:value:
|
1709
|
+
- :string
|
1710
|
+
Saturday:
|
1711
|
+
- :map:
|
1712
|
+
:key:
|
1713
|
+
- :string
|
1714
|
+
:value:
|
1715
|
+
- :string
|
1716
|
+
Sunday:
|
1717
|
+
- :map:
|
1718
|
+
:key:
|
1719
|
+
- :string
|
1720
|
+
:value:
|
1721
|
+
- :string
|
1722
|
+
:outputs: {}
|
1723
|
+
- :name: StartInstance
|
1724
|
+
:method: :start_instance
|
1725
|
+
:inputs:
|
1726
|
+
InstanceId:
|
1727
|
+
- :string
|
1728
|
+
- :required
|
1729
|
+
:outputs: {}
|
1730
|
+
- :name: StartStack
|
1731
|
+
:method: :start_stack
|
1732
|
+
:inputs:
|
1733
|
+
StackId:
|
1734
|
+
- :string
|
1735
|
+
- :required
|
1736
|
+
:outputs: {}
|
1737
|
+
- :name: StopInstance
|
1738
|
+
:method: :stop_instance
|
1739
|
+
:inputs:
|
1740
|
+
InstanceId:
|
1741
|
+
- :string
|
1742
|
+
- :required
|
1743
|
+
:outputs: {}
|
1744
|
+
- :name: StopStack
|
1745
|
+
:method: :stop_stack
|
1746
|
+
:inputs:
|
1747
|
+
StackId:
|
1748
|
+
- :string
|
1749
|
+
- :required
|
1750
|
+
:outputs: {}
|
1751
|
+
- :name: UnassignVolume
|
1752
|
+
:method: :unassign_volume
|
1753
|
+
:inputs:
|
1754
|
+
VolumeId:
|
1755
|
+
- :string
|
1756
|
+
- :required
|
1757
|
+
:outputs: {}
|
1758
|
+
- :name: UpdateApp
|
1759
|
+
:method: :update_app
|
1760
|
+
:inputs:
|
1761
|
+
AppId:
|
1762
|
+
- :string
|
1763
|
+
- :required
|
1764
|
+
Name:
|
1765
|
+
- :string
|
1766
|
+
Description:
|
1767
|
+
- :string
|
1768
|
+
DataSources:
|
1769
|
+
- :list:
|
1770
|
+
- :structure:
|
1771
|
+
Type:
|
1772
|
+
- :string
|
1773
|
+
Arn:
|
1774
|
+
- :string
|
1775
|
+
DatabaseName:
|
1776
|
+
- :string
|
1777
|
+
Type:
|
1778
|
+
- :string
|
1779
|
+
AppSource:
|
1780
|
+
- :structure:
|
1781
|
+
Type:
|
1782
|
+
- :string
|
1783
|
+
Url:
|
1784
|
+
- :string
|
1785
|
+
Username:
|
1786
|
+
- :string
|
1787
|
+
Password:
|
1788
|
+
- :string
|
1789
|
+
SshKey:
|
1790
|
+
- :string
|
1791
|
+
Revision:
|
1792
|
+
- :string
|
1793
|
+
Domains:
|
1794
|
+
- :list:
|
1795
|
+
- :string
|
1796
|
+
EnableSsl:
|
1797
|
+
- :boolean
|
1798
|
+
SslConfiguration:
|
1799
|
+
- :structure:
|
1800
|
+
Certificate:
|
1801
|
+
- :string
|
1802
|
+
- :required
|
1803
|
+
PrivateKey:
|
1804
|
+
- :string
|
1805
|
+
- :required
|
1806
|
+
Chain:
|
1807
|
+
- :string
|
1808
|
+
Attributes:
|
1809
|
+
- :map:
|
1810
|
+
:key:
|
1811
|
+
- :string
|
1812
|
+
:value:
|
1813
|
+
- :string
|
1814
|
+
:outputs: {}
|
1815
|
+
- :name: UpdateElasticIp
|
1816
|
+
:method: :update_elastic_ip
|
1817
|
+
:inputs:
|
1818
|
+
ElasticIp:
|
1819
|
+
- :string
|
1820
|
+
- :required
|
1821
|
+
Name:
|
1822
|
+
- :string
|
1823
|
+
:outputs: {}
|
1824
|
+
- :name: UpdateInstance
|
1825
|
+
:method: :update_instance
|
1826
|
+
:inputs:
|
1827
|
+
InstanceId:
|
1828
|
+
- :string
|
1829
|
+
- :required
|
1830
|
+
LayerIds:
|
1831
|
+
- :list:
|
1832
|
+
- :string
|
1833
|
+
InstanceType:
|
1834
|
+
- :string
|
1835
|
+
AutoScalingType:
|
1836
|
+
- :string
|
1837
|
+
Hostname:
|
1838
|
+
- :string
|
1839
|
+
Os:
|
1840
|
+
- :string
|
1841
|
+
AmiId:
|
1842
|
+
- :string
|
1843
|
+
SshKeyName:
|
1844
|
+
- :string
|
1845
|
+
Architecture:
|
1846
|
+
- :string
|
1847
|
+
InstallUpdatesOnBoot:
|
1848
|
+
- :boolean
|
1849
|
+
EbsOptimized:
|
1850
|
+
- :boolean
|
1851
|
+
:outputs: {}
|
1852
|
+
- :name: UpdateLayer
|
1853
|
+
:method: :update_layer
|
1854
|
+
:inputs:
|
1855
|
+
LayerId:
|
1856
|
+
- :string
|
1857
|
+
- :required
|
1858
|
+
Name:
|
1859
|
+
- :string
|
1860
|
+
Shortname:
|
1861
|
+
- :string
|
1862
|
+
Attributes:
|
1863
|
+
- :map:
|
1864
|
+
:key:
|
1865
|
+
- :string
|
1866
|
+
:value:
|
1867
|
+
- :string
|
1868
|
+
CustomInstanceProfileArn:
|
1869
|
+
- :string
|
1870
|
+
CustomSecurityGroupIds:
|
1871
|
+
- :list:
|
1872
|
+
- :string
|
1873
|
+
Packages:
|
1874
|
+
- :list:
|
1875
|
+
- :string
|
1876
|
+
VolumeConfigurations:
|
1877
|
+
- :list:
|
1878
|
+
- :structure:
|
1879
|
+
MountPoint:
|
1880
|
+
- :string
|
1881
|
+
- :required
|
1882
|
+
RaidLevel:
|
1883
|
+
- :integer
|
1884
|
+
NumberOfDisks:
|
1885
|
+
- :integer
|
1886
|
+
- :required
|
1887
|
+
Size:
|
1888
|
+
- :integer
|
1889
|
+
- :required
|
1890
|
+
VolumeType:
|
1891
|
+
- :string
|
1892
|
+
Iops:
|
1893
|
+
- :integer
|
1894
|
+
EnableAutoHealing:
|
1895
|
+
- :boolean
|
1896
|
+
AutoAssignElasticIps:
|
1897
|
+
- :boolean
|
1898
|
+
AutoAssignPublicIps:
|
1899
|
+
- :boolean
|
1900
|
+
CustomRecipes:
|
1901
|
+
- :structure:
|
1902
|
+
Setup:
|
1903
|
+
- :list:
|
1904
|
+
- :string
|
1905
|
+
Configure:
|
1906
|
+
- :list:
|
1907
|
+
- :string
|
1908
|
+
Deploy:
|
1909
|
+
- :list:
|
1910
|
+
- :string
|
1911
|
+
Undeploy:
|
1912
|
+
- :list:
|
1913
|
+
- :string
|
1914
|
+
Shutdown:
|
1915
|
+
- :list:
|
1916
|
+
- :string
|
1917
|
+
InstallUpdatesOnBoot:
|
1918
|
+
- :boolean
|
1919
|
+
UseEbsOptimizedInstances:
|
1920
|
+
- :boolean
|
1921
|
+
:outputs: {}
|
1922
|
+
- :name: UpdateMyUserProfile
|
1923
|
+
:method: :update_my_user_profile
|
1924
|
+
:inputs:
|
1925
|
+
SshPublicKey:
|
1926
|
+
- :string
|
1927
|
+
:outputs: {}
|
1928
|
+
- :name: UpdateRdsDbInstance
|
1929
|
+
:method: :update_rds_db_instance
|
1930
|
+
:inputs:
|
1931
|
+
RdsDbInstanceArn:
|
1932
|
+
- :string
|
1933
|
+
- :required
|
1934
|
+
DbUser:
|
1935
|
+
- :string
|
1936
|
+
DbPassword:
|
1937
|
+
- :string
|
1938
|
+
:outputs: {}
|
1939
|
+
- :name: UpdateStack
|
1940
|
+
:method: :update_stack
|
1941
|
+
:inputs:
|
1942
|
+
StackId:
|
1943
|
+
- :string
|
1944
|
+
- :required
|
1945
|
+
Name:
|
1946
|
+
- :string
|
1947
|
+
Attributes:
|
1948
|
+
- :map:
|
1949
|
+
:key:
|
1950
|
+
- :string
|
1951
|
+
:value:
|
1952
|
+
- :string
|
1953
|
+
ServiceRoleArn:
|
1954
|
+
- :string
|
1955
|
+
DefaultInstanceProfileArn:
|
1956
|
+
- :string
|
1957
|
+
DefaultOs:
|
1958
|
+
- :string
|
1959
|
+
HostnameTheme:
|
1960
|
+
- :string
|
1961
|
+
DefaultAvailabilityZone:
|
1962
|
+
- :string
|
1963
|
+
DefaultSubnetId:
|
1964
|
+
- :string
|
1965
|
+
CustomJson:
|
1966
|
+
- :string
|
1967
|
+
ConfigurationManager:
|
1968
|
+
- :structure:
|
1969
|
+
Name:
|
1970
|
+
- :string
|
1971
|
+
Version:
|
1972
|
+
- :string
|
1973
|
+
ChefConfiguration:
|
1974
|
+
- :structure:
|
1975
|
+
ManageBerkshelf:
|
1976
|
+
- :boolean
|
1977
|
+
BerkshelfVersion:
|
1978
|
+
- :string
|
1979
|
+
UseCustomCookbooks:
|
1980
|
+
- :boolean
|
1981
|
+
CustomCookbooksSource:
|
1982
|
+
- :structure:
|
1983
|
+
Type:
|
1984
|
+
- :string
|
1985
|
+
Url:
|
1986
|
+
- :string
|
1987
|
+
Username:
|
1988
|
+
- :string
|
1989
|
+
Password:
|
1990
|
+
- :string
|
1991
|
+
SshKey:
|
1992
|
+
- :string
|
1993
|
+
Revision:
|
1994
|
+
- :string
|
1995
|
+
DefaultSshKeyName:
|
1996
|
+
- :string
|
1997
|
+
DefaultRootDeviceType:
|
1998
|
+
- :string
|
1999
|
+
UseOpsworksSecurityGroups:
|
2000
|
+
- :boolean
|
2001
|
+
:outputs: {}
|
2002
|
+
- :name: UpdateUserProfile
|
2003
|
+
:method: :update_user_profile
|
2004
|
+
:inputs:
|
2005
|
+
IamUserArn:
|
2006
|
+
- :string
|
2007
|
+
- :required
|
2008
|
+
SshUsername:
|
2009
|
+
- :string
|
2010
|
+
SshPublicKey:
|
2011
|
+
- :string
|
2012
|
+
AllowSelfManagement:
|
2013
|
+
- :boolean
|
2014
|
+
:outputs: {}
|
2015
|
+
- :name: UpdateVolume
|
2016
|
+
:method: :update_volume
|
2017
|
+
:inputs:
|
2018
|
+
VolumeId:
|
2019
|
+
- :string
|
2020
|
+
- :required
|
2021
|
+
Name:
|
2022
|
+
- :string
|
2023
|
+
MountPoint:
|
2024
|
+
- :string
|
2025
|
+
:outputs: {}
|