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,1375 @@
|
|
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
|
+
:api_version: '2014-03-24'
|
16
|
+
:operations:
|
17
|
+
- :name: AuthorizeCacheSecurityGroupIngress
|
18
|
+
:method: :authorize_cache_security_group_ingress
|
19
|
+
:inputs:
|
20
|
+
CacheSecurityGroupName:
|
21
|
+
- :string
|
22
|
+
- :required
|
23
|
+
EC2SecurityGroupName:
|
24
|
+
- :string
|
25
|
+
- :required
|
26
|
+
EC2SecurityGroupOwnerId:
|
27
|
+
- :string
|
28
|
+
- :required
|
29
|
+
:outputs:
|
30
|
+
:children:
|
31
|
+
AuthorizeCacheSecurityGroupIngressResult:
|
32
|
+
:ignore: true
|
33
|
+
:children:
|
34
|
+
CacheSecurityGroup:
|
35
|
+
:children:
|
36
|
+
EC2SecurityGroups:
|
37
|
+
:ignore: true
|
38
|
+
:children:
|
39
|
+
EC2SecurityGroup:
|
40
|
+
:rename: :ec2_security_groups
|
41
|
+
:list: true
|
42
|
+
:ignore: true
|
43
|
+
- :name: CopySnapshot
|
44
|
+
:method: :copy_snapshot
|
45
|
+
:inputs:
|
46
|
+
SourceSnapshotName:
|
47
|
+
- :string
|
48
|
+
- :required
|
49
|
+
TargetSnapshotName:
|
50
|
+
- :string
|
51
|
+
- :required
|
52
|
+
:outputs:
|
53
|
+
:children:
|
54
|
+
CopySnapshotResult:
|
55
|
+
:ignore: true
|
56
|
+
:children:
|
57
|
+
Snapshot:
|
58
|
+
:children:
|
59
|
+
NumCacheNodes:
|
60
|
+
:type: :integer
|
61
|
+
CacheClusterCreateTime:
|
62
|
+
:type: :time
|
63
|
+
Port:
|
64
|
+
:type: :integer
|
65
|
+
AutoMinorVersionUpgrade:
|
66
|
+
:type: :boolean
|
67
|
+
SnapshotRetentionLimit:
|
68
|
+
:type: :integer
|
69
|
+
NodeSnapshots:
|
70
|
+
:ignore: true
|
71
|
+
:children:
|
72
|
+
NodeSnapshot:
|
73
|
+
:rename: :node_snapshots
|
74
|
+
:list: true
|
75
|
+
:children:
|
76
|
+
CacheNodeCreateTime:
|
77
|
+
:type: :time
|
78
|
+
SnapshotCreateTime:
|
79
|
+
:type: :time
|
80
|
+
:ignore: true
|
81
|
+
- :name: CreateCacheCluster
|
82
|
+
:method: :create_cache_cluster
|
83
|
+
:inputs:
|
84
|
+
CacheClusterId:
|
85
|
+
- :string
|
86
|
+
- :required
|
87
|
+
ReplicationGroupId:
|
88
|
+
- :string
|
89
|
+
NumCacheNodes:
|
90
|
+
- :integer
|
91
|
+
CacheNodeType:
|
92
|
+
- :string
|
93
|
+
Engine:
|
94
|
+
- :string
|
95
|
+
EngineVersion:
|
96
|
+
- :string
|
97
|
+
CacheParameterGroupName:
|
98
|
+
- :string
|
99
|
+
CacheSubnetGroupName:
|
100
|
+
- :string
|
101
|
+
CacheSecurityGroupNames:
|
102
|
+
- :membered_list:
|
103
|
+
- :string
|
104
|
+
SecurityGroupIds:
|
105
|
+
- :membered_list:
|
106
|
+
- :string
|
107
|
+
SnapshotArns:
|
108
|
+
- :membered_list:
|
109
|
+
- :string
|
110
|
+
SnapshotName:
|
111
|
+
- :string
|
112
|
+
PreferredAvailabilityZone:
|
113
|
+
- :string
|
114
|
+
PreferredMaintenanceWindow:
|
115
|
+
- :string
|
116
|
+
Port:
|
117
|
+
- :integer
|
118
|
+
NotificationTopicArn:
|
119
|
+
- :string
|
120
|
+
AutoMinorVersionUpgrade:
|
121
|
+
- :boolean
|
122
|
+
SnapshotRetentionLimit:
|
123
|
+
- :integer
|
124
|
+
SnapshotWindow:
|
125
|
+
- :string
|
126
|
+
:outputs:
|
127
|
+
:children:
|
128
|
+
CreateCacheClusterResult:
|
129
|
+
:ignore: true
|
130
|
+
:children:
|
131
|
+
CacheCluster:
|
132
|
+
:children:
|
133
|
+
ConfigurationEndpoint:
|
134
|
+
:children:
|
135
|
+
Port:
|
136
|
+
:type: :integer
|
137
|
+
NumCacheNodes:
|
138
|
+
:type: :integer
|
139
|
+
CacheClusterCreateTime:
|
140
|
+
:type: :time
|
141
|
+
PendingModifiedValues:
|
142
|
+
:children:
|
143
|
+
NumCacheNodes:
|
144
|
+
:type: :integer
|
145
|
+
CacheNodeIdsToRemove:
|
146
|
+
:ignore: true
|
147
|
+
:children:
|
148
|
+
CacheNodeId:
|
149
|
+
:rename: :cache_node_ids_to_remove
|
150
|
+
:list: true
|
151
|
+
CacheSecurityGroups:
|
152
|
+
:ignore: true
|
153
|
+
:children:
|
154
|
+
CacheSecurityGroup:
|
155
|
+
:rename: :cache_security_groups
|
156
|
+
:list: true
|
157
|
+
CacheParameterGroup:
|
158
|
+
:children:
|
159
|
+
CacheNodeIdsToReboot:
|
160
|
+
:ignore: true
|
161
|
+
:children:
|
162
|
+
CacheNodeId:
|
163
|
+
:rename: :cache_node_ids_to_reboot
|
164
|
+
:list: true
|
165
|
+
CacheNodes:
|
166
|
+
:ignore: true
|
167
|
+
:children:
|
168
|
+
CacheNode:
|
169
|
+
:rename: :cache_nodes
|
170
|
+
:list: true
|
171
|
+
:children:
|
172
|
+
CacheNodeCreateTime:
|
173
|
+
:type: :time
|
174
|
+
Endpoint:
|
175
|
+
:children:
|
176
|
+
Port:
|
177
|
+
:type: :integer
|
178
|
+
AutoMinorVersionUpgrade:
|
179
|
+
:type: :boolean
|
180
|
+
SecurityGroups:
|
181
|
+
:ignore: true
|
182
|
+
:children:
|
183
|
+
member:
|
184
|
+
:rename: :security_groups
|
185
|
+
:list: true
|
186
|
+
SnapshotRetentionLimit:
|
187
|
+
:type: :integer
|
188
|
+
:ignore: true
|
189
|
+
- :name: CreateCacheParameterGroup
|
190
|
+
:method: :create_cache_parameter_group
|
191
|
+
:inputs:
|
192
|
+
CacheParameterGroupName:
|
193
|
+
- :string
|
194
|
+
- :required
|
195
|
+
CacheParameterGroupFamily:
|
196
|
+
- :string
|
197
|
+
- :required
|
198
|
+
Description:
|
199
|
+
- :string
|
200
|
+
- :required
|
201
|
+
:outputs:
|
202
|
+
:children:
|
203
|
+
CreateCacheParameterGroupResult:
|
204
|
+
:ignore: true
|
205
|
+
:children:
|
206
|
+
CacheParameterGroup:
|
207
|
+
:ignore: true
|
208
|
+
- :name: CreateCacheSecurityGroup
|
209
|
+
:method: :create_cache_security_group
|
210
|
+
:inputs:
|
211
|
+
CacheSecurityGroupName:
|
212
|
+
- :string
|
213
|
+
- :required
|
214
|
+
Description:
|
215
|
+
- :string
|
216
|
+
- :required
|
217
|
+
:outputs:
|
218
|
+
:children:
|
219
|
+
CreateCacheSecurityGroupResult:
|
220
|
+
:ignore: true
|
221
|
+
:children:
|
222
|
+
CacheSecurityGroup:
|
223
|
+
:children:
|
224
|
+
EC2SecurityGroups:
|
225
|
+
:ignore: true
|
226
|
+
:children:
|
227
|
+
EC2SecurityGroup:
|
228
|
+
:rename: :ec2_security_groups
|
229
|
+
:list: true
|
230
|
+
:ignore: true
|
231
|
+
- :name: CreateCacheSubnetGroup
|
232
|
+
:method: :create_cache_subnet_group
|
233
|
+
:inputs:
|
234
|
+
CacheSubnetGroupName:
|
235
|
+
- :string
|
236
|
+
- :required
|
237
|
+
CacheSubnetGroupDescription:
|
238
|
+
- :string
|
239
|
+
- :required
|
240
|
+
SubnetIds:
|
241
|
+
- :membered_list:
|
242
|
+
- :string
|
243
|
+
- :required
|
244
|
+
:outputs:
|
245
|
+
:children:
|
246
|
+
CreateCacheSubnetGroupResult:
|
247
|
+
:ignore: true
|
248
|
+
:children:
|
249
|
+
CacheSubnetGroup:
|
250
|
+
:children:
|
251
|
+
Subnets:
|
252
|
+
:ignore: true
|
253
|
+
:children:
|
254
|
+
Subnet:
|
255
|
+
:rename: :subnets
|
256
|
+
:list: true
|
257
|
+
:ignore: true
|
258
|
+
- :name: CreateReplicationGroup
|
259
|
+
:method: :create_replication_group
|
260
|
+
:inputs:
|
261
|
+
ReplicationGroupId:
|
262
|
+
- :string
|
263
|
+
- :required
|
264
|
+
PrimaryClusterId:
|
265
|
+
- :string
|
266
|
+
- :required
|
267
|
+
ReplicationGroupDescription:
|
268
|
+
- :string
|
269
|
+
- :required
|
270
|
+
:outputs:
|
271
|
+
:children:
|
272
|
+
CreateReplicationGroupResult:
|
273
|
+
:ignore: true
|
274
|
+
:children:
|
275
|
+
ReplicationGroup:
|
276
|
+
:children:
|
277
|
+
MemberClusters:
|
278
|
+
:ignore: true
|
279
|
+
:children:
|
280
|
+
ClusterId:
|
281
|
+
:rename: :member_clusters
|
282
|
+
:list: true
|
283
|
+
NodeGroups:
|
284
|
+
:ignore: true
|
285
|
+
:children:
|
286
|
+
NodeGroup:
|
287
|
+
:rename: :node_groups
|
288
|
+
:list: true
|
289
|
+
:children:
|
290
|
+
PrimaryEndpoint:
|
291
|
+
:children:
|
292
|
+
Port:
|
293
|
+
:type: :integer
|
294
|
+
NodeGroupMembers:
|
295
|
+
:ignore: true
|
296
|
+
:children:
|
297
|
+
NodeGroupMember:
|
298
|
+
:rename: :node_group_members
|
299
|
+
:list: true
|
300
|
+
:children:
|
301
|
+
ReadEndpoint:
|
302
|
+
:children:
|
303
|
+
Port:
|
304
|
+
:type: :integer
|
305
|
+
:ignore: true
|
306
|
+
- :name: CreateSnapshot
|
307
|
+
:method: :create_snapshot
|
308
|
+
:inputs:
|
309
|
+
CacheClusterId:
|
310
|
+
- :string
|
311
|
+
- :required
|
312
|
+
SnapshotName:
|
313
|
+
- :string
|
314
|
+
- :required
|
315
|
+
:outputs:
|
316
|
+
:children:
|
317
|
+
CreateSnapshotResult:
|
318
|
+
:ignore: true
|
319
|
+
:children:
|
320
|
+
Snapshot:
|
321
|
+
:children:
|
322
|
+
NumCacheNodes:
|
323
|
+
:type: :integer
|
324
|
+
CacheClusterCreateTime:
|
325
|
+
:type: :time
|
326
|
+
Port:
|
327
|
+
:type: :integer
|
328
|
+
AutoMinorVersionUpgrade:
|
329
|
+
:type: :boolean
|
330
|
+
SnapshotRetentionLimit:
|
331
|
+
:type: :integer
|
332
|
+
NodeSnapshots:
|
333
|
+
:ignore: true
|
334
|
+
:children:
|
335
|
+
NodeSnapshot:
|
336
|
+
:rename: :node_snapshots
|
337
|
+
:list: true
|
338
|
+
:children:
|
339
|
+
CacheNodeCreateTime:
|
340
|
+
:type: :time
|
341
|
+
SnapshotCreateTime:
|
342
|
+
:type: :time
|
343
|
+
:ignore: true
|
344
|
+
- :name: DeleteCacheCluster
|
345
|
+
:method: :delete_cache_cluster
|
346
|
+
:inputs:
|
347
|
+
CacheClusterId:
|
348
|
+
- :string
|
349
|
+
- :required
|
350
|
+
FinalSnapshotIdentifier:
|
351
|
+
- :string
|
352
|
+
:outputs:
|
353
|
+
:children:
|
354
|
+
DeleteCacheClusterResult:
|
355
|
+
:ignore: true
|
356
|
+
:children:
|
357
|
+
CacheCluster:
|
358
|
+
:children:
|
359
|
+
ConfigurationEndpoint:
|
360
|
+
:children:
|
361
|
+
Port:
|
362
|
+
:type: :integer
|
363
|
+
NumCacheNodes:
|
364
|
+
:type: :integer
|
365
|
+
CacheClusterCreateTime:
|
366
|
+
:type: :time
|
367
|
+
PendingModifiedValues:
|
368
|
+
:children:
|
369
|
+
NumCacheNodes:
|
370
|
+
:type: :integer
|
371
|
+
CacheNodeIdsToRemove:
|
372
|
+
:ignore: true
|
373
|
+
:children:
|
374
|
+
CacheNodeId:
|
375
|
+
:rename: :cache_node_ids_to_remove
|
376
|
+
:list: true
|
377
|
+
CacheSecurityGroups:
|
378
|
+
:ignore: true
|
379
|
+
:children:
|
380
|
+
CacheSecurityGroup:
|
381
|
+
:rename: :cache_security_groups
|
382
|
+
:list: true
|
383
|
+
CacheParameterGroup:
|
384
|
+
:children:
|
385
|
+
CacheNodeIdsToReboot:
|
386
|
+
:ignore: true
|
387
|
+
:children:
|
388
|
+
CacheNodeId:
|
389
|
+
:rename: :cache_node_ids_to_reboot
|
390
|
+
:list: true
|
391
|
+
CacheNodes:
|
392
|
+
:ignore: true
|
393
|
+
:children:
|
394
|
+
CacheNode:
|
395
|
+
:rename: :cache_nodes
|
396
|
+
:list: true
|
397
|
+
:children:
|
398
|
+
CacheNodeCreateTime:
|
399
|
+
:type: :time
|
400
|
+
Endpoint:
|
401
|
+
:children:
|
402
|
+
Port:
|
403
|
+
:type: :integer
|
404
|
+
AutoMinorVersionUpgrade:
|
405
|
+
:type: :boolean
|
406
|
+
SecurityGroups:
|
407
|
+
:ignore: true
|
408
|
+
:children:
|
409
|
+
member:
|
410
|
+
:rename: :security_groups
|
411
|
+
:list: true
|
412
|
+
SnapshotRetentionLimit:
|
413
|
+
:type: :integer
|
414
|
+
:ignore: true
|
415
|
+
- :name: DeleteCacheParameterGroup
|
416
|
+
:method: :delete_cache_parameter_group
|
417
|
+
:inputs:
|
418
|
+
CacheParameterGroupName:
|
419
|
+
- :string
|
420
|
+
- :required
|
421
|
+
:outputs:
|
422
|
+
:children:
|
423
|
+
DeleteCacheParameterGroupResult:
|
424
|
+
:ignore: true
|
425
|
+
- :name: DeleteCacheSecurityGroup
|
426
|
+
:method: :delete_cache_security_group
|
427
|
+
:inputs:
|
428
|
+
CacheSecurityGroupName:
|
429
|
+
- :string
|
430
|
+
- :required
|
431
|
+
:outputs:
|
432
|
+
:children:
|
433
|
+
DeleteCacheSecurityGroupResult:
|
434
|
+
:ignore: true
|
435
|
+
- :name: DeleteCacheSubnetGroup
|
436
|
+
:method: :delete_cache_subnet_group
|
437
|
+
:inputs:
|
438
|
+
CacheSubnetGroupName:
|
439
|
+
- :string
|
440
|
+
- :required
|
441
|
+
:outputs:
|
442
|
+
:children:
|
443
|
+
DeleteCacheSubnetGroupResult:
|
444
|
+
:ignore: true
|
445
|
+
- :name: DeleteReplicationGroup
|
446
|
+
:method: :delete_replication_group
|
447
|
+
:inputs:
|
448
|
+
ReplicationGroupId:
|
449
|
+
- :string
|
450
|
+
- :required
|
451
|
+
RetainPrimaryCluster:
|
452
|
+
- :boolean
|
453
|
+
FinalSnapshotIdentifier:
|
454
|
+
- :string
|
455
|
+
:outputs:
|
456
|
+
:children:
|
457
|
+
DeleteReplicationGroupResult:
|
458
|
+
:ignore: true
|
459
|
+
:children:
|
460
|
+
ReplicationGroup:
|
461
|
+
:children:
|
462
|
+
MemberClusters:
|
463
|
+
:ignore: true
|
464
|
+
:children:
|
465
|
+
ClusterId:
|
466
|
+
:rename: :member_clusters
|
467
|
+
:list: true
|
468
|
+
NodeGroups:
|
469
|
+
:ignore: true
|
470
|
+
:children:
|
471
|
+
NodeGroup:
|
472
|
+
:rename: :node_groups
|
473
|
+
:list: true
|
474
|
+
:children:
|
475
|
+
PrimaryEndpoint:
|
476
|
+
:children:
|
477
|
+
Port:
|
478
|
+
:type: :integer
|
479
|
+
NodeGroupMembers:
|
480
|
+
:ignore: true
|
481
|
+
:children:
|
482
|
+
NodeGroupMember:
|
483
|
+
:rename: :node_group_members
|
484
|
+
:list: true
|
485
|
+
:children:
|
486
|
+
ReadEndpoint:
|
487
|
+
:children:
|
488
|
+
Port:
|
489
|
+
:type: :integer
|
490
|
+
:ignore: true
|
491
|
+
- :name: DeleteSnapshot
|
492
|
+
:method: :delete_snapshot
|
493
|
+
:inputs:
|
494
|
+
SnapshotName:
|
495
|
+
- :string
|
496
|
+
- :required
|
497
|
+
:outputs:
|
498
|
+
:children:
|
499
|
+
DeleteSnapshotResult:
|
500
|
+
:ignore: true
|
501
|
+
:children:
|
502
|
+
Snapshot:
|
503
|
+
:children:
|
504
|
+
NumCacheNodes:
|
505
|
+
:type: :integer
|
506
|
+
CacheClusterCreateTime:
|
507
|
+
:type: :time
|
508
|
+
Port:
|
509
|
+
:type: :integer
|
510
|
+
AutoMinorVersionUpgrade:
|
511
|
+
:type: :boolean
|
512
|
+
SnapshotRetentionLimit:
|
513
|
+
:type: :integer
|
514
|
+
NodeSnapshots:
|
515
|
+
:ignore: true
|
516
|
+
:children:
|
517
|
+
NodeSnapshot:
|
518
|
+
:rename: :node_snapshots
|
519
|
+
:list: true
|
520
|
+
:children:
|
521
|
+
CacheNodeCreateTime:
|
522
|
+
:type: :time
|
523
|
+
SnapshotCreateTime:
|
524
|
+
:type: :time
|
525
|
+
:ignore: true
|
526
|
+
- :name: DescribeCacheClusters
|
527
|
+
:method: :describe_cache_clusters
|
528
|
+
:inputs:
|
529
|
+
CacheClusterId:
|
530
|
+
- :string
|
531
|
+
MaxRecords:
|
532
|
+
- :integer
|
533
|
+
Marker:
|
534
|
+
- :string
|
535
|
+
ShowCacheNodeInfo:
|
536
|
+
- :boolean
|
537
|
+
:outputs:
|
538
|
+
:children:
|
539
|
+
DescribeCacheClustersResult:
|
540
|
+
:ignore: true
|
541
|
+
:children:
|
542
|
+
CacheClusters:
|
543
|
+
:ignore: true
|
544
|
+
:children:
|
545
|
+
CacheCluster:
|
546
|
+
:rename: :cache_clusters
|
547
|
+
:list: true
|
548
|
+
:children:
|
549
|
+
ConfigurationEndpoint:
|
550
|
+
:children:
|
551
|
+
Port:
|
552
|
+
:type: :integer
|
553
|
+
NumCacheNodes:
|
554
|
+
:type: :integer
|
555
|
+
CacheClusterCreateTime:
|
556
|
+
:type: :time
|
557
|
+
PendingModifiedValues:
|
558
|
+
:children:
|
559
|
+
NumCacheNodes:
|
560
|
+
:type: :integer
|
561
|
+
CacheNodeIdsToRemove:
|
562
|
+
:ignore: true
|
563
|
+
:children:
|
564
|
+
CacheNodeId:
|
565
|
+
:rename: :cache_node_ids_to_remove
|
566
|
+
:list: true
|
567
|
+
CacheSecurityGroups:
|
568
|
+
:ignore: true
|
569
|
+
:children:
|
570
|
+
CacheSecurityGroup:
|
571
|
+
:rename: :cache_security_groups
|
572
|
+
:list: true
|
573
|
+
CacheParameterGroup:
|
574
|
+
:children:
|
575
|
+
CacheNodeIdsToReboot:
|
576
|
+
:ignore: true
|
577
|
+
:children:
|
578
|
+
CacheNodeId:
|
579
|
+
:rename: :cache_node_ids_to_reboot
|
580
|
+
:list: true
|
581
|
+
CacheNodes:
|
582
|
+
:ignore: true
|
583
|
+
:children:
|
584
|
+
CacheNode:
|
585
|
+
:rename: :cache_nodes
|
586
|
+
:list: true
|
587
|
+
:children:
|
588
|
+
CacheNodeCreateTime:
|
589
|
+
:type: :time
|
590
|
+
Endpoint:
|
591
|
+
:children:
|
592
|
+
Port:
|
593
|
+
:type: :integer
|
594
|
+
AutoMinorVersionUpgrade:
|
595
|
+
:type: :boolean
|
596
|
+
SecurityGroups:
|
597
|
+
:ignore: true
|
598
|
+
:children:
|
599
|
+
member:
|
600
|
+
:rename: :security_groups
|
601
|
+
:list: true
|
602
|
+
SnapshotRetentionLimit:
|
603
|
+
:type: :integer
|
604
|
+
- :name: DescribeCacheEngineVersions
|
605
|
+
:method: :describe_cache_engine_versions
|
606
|
+
:inputs:
|
607
|
+
Engine:
|
608
|
+
- :string
|
609
|
+
EngineVersion:
|
610
|
+
- :string
|
611
|
+
CacheParameterGroupFamily:
|
612
|
+
- :string
|
613
|
+
MaxRecords:
|
614
|
+
- :integer
|
615
|
+
Marker:
|
616
|
+
- :string
|
617
|
+
DefaultOnly:
|
618
|
+
- :boolean
|
619
|
+
:outputs:
|
620
|
+
:children:
|
621
|
+
DescribeCacheEngineVersionsResult:
|
622
|
+
:ignore: true
|
623
|
+
:children:
|
624
|
+
CacheEngineVersions:
|
625
|
+
:ignore: true
|
626
|
+
:children:
|
627
|
+
CacheEngineVersion:
|
628
|
+
:rename: :cache_engine_versions
|
629
|
+
:list: true
|
630
|
+
- :name: DescribeCacheParameterGroups
|
631
|
+
:method: :describe_cache_parameter_groups
|
632
|
+
:inputs:
|
633
|
+
CacheParameterGroupName:
|
634
|
+
- :string
|
635
|
+
MaxRecords:
|
636
|
+
- :integer
|
637
|
+
Marker:
|
638
|
+
- :string
|
639
|
+
:outputs:
|
640
|
+
:children:
|
641
|
+
DescribeCacheParameterGroupsResult:
|
642
|
+
:ignore: true
|
643
|
+
:children:
|
644
|
+
CacheParameterGroups:
|
645
|
+
:ignore: true
|
646
|
+
:children:
|
647
|
+
CacheParameterGroup:
|
648
|
+
:rename: :cache_parameter_groups
|
649
|
+
:list: true
|
650
|
+
- :name: DescribeCacheParameters
|
651
|
+
:method: :describe_cache_parameters
|
652
|
+
:inputs:
|
653
|
+
CacheParameterGroupName:
|
654
|
+
- :string
|
655
|
+
- :required
|
656
|
+
Source:
|
657
|
+
- :string
|
658
|
+
MaxRecords:
|
659
|
+
- :integer
|
660
|
+
Marker:
|
661
|
+
- :string
|
662
|
+
:outputs:
|
663
|
+
:children:
|
664
|
+
DescribeCacheParametersResult:
|
665
|
+
:ignore: true
|
666
|
+
:children:
|
667
|
+
Parameters:
|
668
|
+
:ignore: true
|
669
|
+
:children:
|
670
|
+
Parameter:
|
671
|
+
:rename: :parameters
|
672
|
+
:list: true
|
673
|
+
:children:
|
674
|
+
IsModifiable:
|
675
|
+
:type: :boolean
|
676
|
+
CacheNodeTypeSpecificParameters:
|
677
|
+
:ignore: true
|
678
|
+
:children:
|
679
|
+
CacheNodeTypeSpecificParameter:
|
680
|
+
:rename: :cache_node_type_specific_parameters
|
681
|
+
:list: true
|
682
|
+
:children:
|
683
|
+
IsModifiable:
|
684
|
+
:type: :boolean
|
685
|
+
CacheNodeTypeSpecificValues:
|
686
|
+
:ignore: true
|
687
|
+
:children:
|
688
|
+
CacheNodeTypeSpecificValue:
|
689
|
+
:rename: :cache_node_type_specific_values
|
690
|
+
:list: true
|
691
|
+
- :name: DescribeCacheSecurityGroups
|
692
|
+
:method: :describe_cache_security_groups
|
693
|
+
:inputs:
|
694
|
+
CacheSecurityGroupName:
|
695
|
+
- :string
|
696
|
+
MaxRecords:
|
697
|
+
- :integer
|
698
|
+
Marker:
|
699
|
+
- :string
|
700
|
+
:outputs:
|
701
|
+
:children:
|
702
|
+
DescribeCacheSecurityGroupsResult:
|
703
|
+
:ignore: true
|
704
|
+
:children:
|
705
|
+
CacheSecurityGroups:
|
706
|
+
:ignore: true
|
707
|
+
:children:
|
708
|
+
CacheSecurityGroup:
|
709
|
+
:rename: :cache_security_groups
|
710
|
+
:list: true
|
711
|
+
:children:
|
712
|
+
EC2SecurityGroups:
|
713
|
+
:ignore: true
|
714
|
+
:children:
|
715
|
+
EC2SecurityGroup:
|
716
|
+
:rename: :ec2_security_groups
|
717
|
+
:list: true
|
718
|
+
- :name: DescribeCacheSubnetGroups
|
719
|
+
:method: :describe_cache_subnet_groups
|
720
|
+
:inputs:
|
721
|
+
CacheSubnetGroupName:
|
722
|
+
- :string
|
723
|
+
MaxRecords:
|
724
|
+
- :integer
|
725
|
+
Marker:
|
726
|
+
- :string
|
727
|
+
:outputs:
|
728
|
+
:children:
|
729
|
+
DescribeCacheSubnetGroupsResult:
|
730
|
+
:ignore: true
|
731
|
+
:children:
|
732
|
+
CacheSubnetGroups:
|
733
|
+
:ignore: true
|
734
|
+
:children:
|
735
|
+
CacheSubnetGroup:
|
736
|
+
:rename: :cache_subnet_groups
|
737
|
+
:list: true
|
738
|
+
:children:
|
739
|
+
Subnets:
|
740
|
+
:ignore: true
|
741
|
+
:children:
|
742
|
+
Subnet:
|
743
|
+
:rename: :subnets
|
744
|
+
:list: true
|
745
|
+
- :name: DescribeEngineDefaultParameters
|
746
|
+
:method: :describe_engine_default_parameters
|
747
|
+
:inputs:
|
748
|
+
CacheParameterGroupFamily:
|
749
|
+
- :string
|
750
|
+
- :required
|
751
|
+
MaxRecords:
|
752
|
+
- :integer
|
753
|
+
Marker:
|
754
|
+
- :string
|
755
|
+
:outputs:
|
756
|
+
:children:
|
757
|
+
DescribeEngineDefaultParametersResult:
|
758
|
+
:ignore: true
|
759
|
+
:children:
|
760
|
+
EngineDefaults:
|
761
|
+
:children:
|
762
|
+
Parameters:
|
763
|
+
:ignore: true
|
764
|
+
:children:
|
765
|
+
Parameter:
|
766
|
+
:rename: :parameters
|
767
|
+
:list: true
|
768
|
+
:children:
|
769
|
+
IsModifiable:
|
770
|
+
:type: :boolean
|
771
|
+
CacheNodeTypeSpecificParameters:
|
772
|
+
:ignore: true
|
773
|
+
:children:
|
774
|
+
CacheNodeTypeSpecificParameter:
|
775
|
+
:rename: :cache_node_type_specific_parameters
|
776
|
+
:list: true
|
777
|
+
:children:
|
778
|
+
IsModifiable:
|
779
|
+
:type: :boolean
|
780
|
+
CacheNodeTypeSpecificValues:
|
781
|
+
:ignore: true
|
782
|
+
:children:
|
783
|
+
CacheNodeTypeSpecificValue:
|
784
|
+
:rename: :cache_node_type_specific_values
|
785
|
+
:list: true
|
786
|
+
:ignore: true
|
787
|
+
- :name: DescribeEvents
|
788
|
+
:method: :describe_events
|
789
|
+
:inputs:
|
790
|
+
SourceIdentifier:
|
791
|
+
- :string
|
792
|
+
SourceType:
|
793
|
+
- :string
|
794
|
+
StartTime:
|
795
|
+
- :timestamp
|
796
|
+
EndTime:
|
797
|
+
- :timestamp
|
798
|
+
Duration:
|
799
|
+
- :integer
|
800
|
+
MaxRecords:
|
801
|
+
- :integer
|
802
|
+
Marker:
|
803
|
+
- :string
|
804
|
+
:outputs:
|
805
|
+
:children:
|
806
|
+
DescribeEventsResult:
|
807
|
+
:ignore: true
|
808
|
+
:children:
|
809
|
+
Events:
|
810
|
+
:ignore: true
|
811
|
+
:children:
|
812
|
+
Event:
|
813
|
+
:rename: :events
|
814
|
+
:list: true
|
815
|
+
:children:
|
816
|
+
Date:
|
817
|
+
:type: :time
|
818
|
+
- :name: DescribeReplicationGroups
|
819
|
+
:method: :describe_replication_groups
|
820
|
+
:inputs:
|
821
|
+
ReplicationGroupId:
|
822
|
+
- :string
|
823
|
+
MaxRecords:
|
824
|
+
- :integer
|
825
|
+
Marker:
|
826
|
+
- :string
|
827
|
+
:outputs:
|
828
|
+
:children:
|
829
|
+
DescribeReplicationGroupsResult:
|
830
|
+
:ignore: true
|
831
|
+
:children:
|
832
|
+
ReplicationGroups:
|
833
|
+
:ignore: true
|
834
|
+
:children:
|
835
|
+
ReplicationGroup:
|
836
|
+
:rename: :replication_groups
|
837
|
+
:list: true
|
838
|
+
:children:
|
839
|
+
MemberClusters:
|
840
|
+
:ignore: true
|
841
|
+
:children:
|
842
|
+
ClusterId:
|
843
|
+
:rename: :member_clusters
|
844
|
+
:list: true
|
845
|
+
NodeGroups:
|
846
|
+
:ignore: true
|
847
|
+
:children:
|
848
|
+
NodeGroup:
|
849
|
+
:rename: :node_groups
|
850
|
+
:list: true
|
851
|
+
:children:
|
852
|
+
PrimaryEndpoint:
|
853
|
+
:children:
|
854
|
+
Port:
|
855
|
+
:type: :integer
|
856
|
+
NodeGroupMembers:
|
857
|
+
:ignore: true
|
858
|
+
:children:
|
859
|
+
NodeGroupMember:
|
860
|
+
:rename: :node_group_members
|
861
|
+
:list: true
|
862
|
+
:children:
|
863
|
+
ReadEndpoint:
|
864
|
+
:children:
|
865
|
+
Port:
|
866
|
+
:type: :integer
|
867
|
+
- :name: DescribeReservedCacheNodes
|
868
|
+
:method: :describe_reserved_cache_nodes
|
869
|
+
:inputs:
|
870
|
+
ReservedCacheNodeId:
|
871
|
+
- :string
|
872
|
+
ReservedCacheNodesOfferingId:
|
873
|
+
- :string
|
874
|
+
CacheNodeType:
|
875
|
+
- :string
|
876
|
+
Duration:
|
877
|
+
- :string
|
878
|
+
ProductDescription:
|
879
|
+
- :string
|
880
|
+
OfferingType:
|
881
|
+
- :string
|
882
|
+
MaxRecords:
|
883
|
+
- :integer
|
884
|
+
Marker:
|
885
|
+
- :string
|
886
|
+
:outputs:
|
887
|
+
:children:
|
888
|
+
DescribeReservedCacheNodesResult:
|
889
|
+
:ignore: true
|
890
|
+
:children:
|
891
|
+
ReservedCacheNodes:
|
892
|
+
:ignore: true
|
893
|
+
:children:
|
894
|
+
ReservedCacheNode:
|
895
|
+
:rename: :reserved_cache_nodes
|
896
|
+
:list: true
|
897
|
+
:children:
|
898
|
+
StartTime:
|
899
|
+
:type: :time
|
900
|
+
Duration:
|
901
|
+
:type: :integer
|
902
|
+
FixedPrice:
|
903
|
+
:type: :float
|
904
|
+
UsagePrice:
|
905
|
+
:type: :float
|
906
|
+
CacheNodeCount:
|
907
|
+
:type: :integer
|
908
|
+
RecurringCharges:
|
909
|
+
:ignore: true
|
910
|
+
:children:
|
911
|
+
RecurringCharge:
|
912
|
+
:rename: :recurring_charges
|
913
|
+
:list: true
|
914
|
+
:children:
|
915
|
+
RecurringChargeAmount:
|
916
|
+
:type: :float
|
917
|
+
- :name: DescribeReservedCacheNodesOfferings
|
918
|
+
:method: :describe_reserved_cache_nodes_offerings
|
919
|
+
:inputs:
|
920
|
+
ReservedCacheNodesOfferingId:
|
921
|
+
- :string
|
922
|
+
CacheNodeType:
|
923
|
+
- :string
|
924
|
+
Duration:
|
925
|
+
- :string
|
926
|
+
ProductDescription:
|
927
|
+
- :string
|
928
|
+
OfferingType:
|
929
|
+
- :string
|
930
|
+
MaxRecords:
|
931
|
+
- :integer
|
932
|
+
Marker:
|
933
|
+
- :string
|
934
|
+
:outputs:
|
935
|
+
:children:
|
936
|
+
DescribeReservedCacheNodesOfferingsResult:
|
937
|
+
:ignore: true
|
938
|
+
:children:
|
939
|
+
ReservedCacheNodesOfferings:
|
940
|
+
:ignore: true
|
941
|
+
:children:
|
942
|
+
ReservedCacheNodesOffering:
|
943
|
+
:rename: :reserved_cache_nodes_offerings
|
944
|
+
:list: true
|
945
|
+
:children:
|
946
|
+
Duration:
|
947
|
+
:type: :integer
|
948
|
+
FixedPrice:
|
949
|
+
:type: :float
|
950
|
+
UsagePrice:
|
951
|
+
:type: :float
|
952
|
+
RecurringCharges:
|
953
|
+
:ignore: true
|
954
|
+
:children:
|
955
|
+
RecurringCharge:
|
956
|
+
:rename: :recurring_charges
|
957
|
+
:list: true
|
958
|
+
:children:
|
959
|
+
RecurringChargeAmount:
|
960
|
+
:type: :float
|
961
|
+
- :name: DescribeSnapshots
|
962
|
+
:method: :describe_snapshots
|
963
|
+
:inputs:
|
964
|
+
CacheClusterId:
|
965
|
+
- :string
|
966
|
+
SnapshotName:
|
967
|
+
- :string
|
968
|
+
SnapshotSource:
|
969
|
+
- :string
|
970
|
+
Marker:
|
971
|
+
- :string
|
972
|
+
MaxRecords:
|
973
|
+
- :integer
|
974
|
+
:outputs:
|
975
|
+
:children:
|
976
|
+
DescribeSnapshotsResult:
|
977
|
+
:ignore: true
|
978
|
+
:children:
|
979
|
+
Snapshots:
|
980
|
+
:ignore: true
|
981
|
+
:children:
|
982
|
+
Snapshot:
|
983
|
+
:rename: :snapshots
|
984
|
+
:list: true
|
985
|
+
:children:
|
986
|
+
NumCacheNodes:
|
987
|
+
:type: :integer
|
988
|
+
CacheClusterCreateTime:
|
989
|
+
:type: :time
|
990
|
+
Port:
|
991
|
+
:type: :integer
|
992
|
+
AutoMinorVersionUpgrade:
|
993
|
+
:type: :boolean
|
994
|
+
SnapshotRetentionLimit:
|
995
|
+
:type: :integer
|
996
|
+
NodeSnapshots:
|
997
|
+
:ignore: true
|
998
|
+
:children:
|
999
|
+
NodeSnapshot:
|
1000
|
+
:rename: :node_snapshots
|
1001
|
+
:list: true
|
1002
|
+
:children:
|
1003
|
+
CacheNodeCreateTime:
|
1004
|
+
:type: :time
|
1005
|
+
SnapshotCreateTime:
|
1006
|
+
:type: :time
|
1007
|
+
- :name: ModifyCacheCluster
|
1008
|
+
:method: :modify_cache_cluster
|
1009
|
+
:inputs:
|
1010
|
+
CacheClusterId:
|
1011
|
+
- :string
|
1012
|
+
- :required
|
1013
|
+
NumCacheNodes:
|
1014
|
+
- :integer
|
1015
|
+
CacheNodeIdsToRemove:
|
1016
|
+
- :membered_list:
|
1017
|
+
- :string
|
1018
|
+
CacheSecurityGroupNames:
|
1019
|
+
- :membered_list:
|
1020
|
+
- :string
|
1021
|
+
SecurityGroupIds:
|
1022
|
+
- :membered_list:
|
1023
|
+
- :string
|
1024
|
+
PreferredMaintenanceWindow:
|
1025
|
+
- :string
|
1026
|
+
NotificationTopicArn:
|
1027
|
+
- :string
|
1028
|
+
CacheParameterGroupName:
|
1029
|
+
- :string
|
1030
|
+
NotificationTopicStatus:
|
1031
|
+
- :string
|
1032
|
+
ApplyImmediately:
|
1033
|
+
- :boolean
|
1034
|
+
EngineVersion:
|
1035
|
+
- :string
|
1036
|
+
AutoMinorVersionUpgrade:
|
1037
|
+
- :boolean
|
1038
|
+
SnapshotRetentionLimit:
|
1039
|
+
- :integer
|
1040
|
+
SnapshotWindow:
|
1041
|
+
- :string
|
1042
|
+
:outputs:
|
1043
|
+
:children:
|
1044
|
+
ModifyCacheClusterResult:
|
1045
|
+
:ignore: true
|
1046
|
+
:children:
|
1047
|
+
CacheCluster:
|
1048
|
+
:children:
|
1049
|
+
ConfigurationEndpoint:
|
1050
|
+
:children:
|
1051
|
+
Port:
|
1052
|
+
:type: :integer
|
1053
|
+
NumCacheNodes:
|
1054
|
+
:type: :integer
|
1055
|
+
CacheClusterCreateTime:
|
1056
|
+
:type: :time
|
1057
|
+
PendingModifiedValues:
|
1058
|
+
:children:
|
1059
|
+
NumCacheNodes:
|
1060
|
+
:type: :integer
|
1061
|
+
CacheNodeIdsToRemove:
|
1062
|
+
:ignore: true
|
1063
|
+
:children:
|
1064
|
+
CacheNodeId:
|
1065
|
+
:rename: :cache_node_ids_to_remove
|
1066
|
+
:list: true
|
1067
|
+
CacheSecurityGroups:
|
1068
|
+
:ignore: true
|
1069
|
+
:children:
|
1070
|
+
CacheSecurityGroup:
|
1071
|
+
:rename: :cache_security_groups
|
1072
|
+
:list: true
|
1073
|
+
CacheParameterGroup:
|
1074
|
+
:children:
|
1075
|
+
CacheNodeIdsToReboot:
|
1076
|
+
:ignore: true
|
1077
|
+
:children:
|
1078
|
+
CacheNodeId:
|
1079
|
+
:rename: :cache_node_ids_to_reboot
|
1080
|
+
:list: true
|
1081
|
+
CacheNodes:
|
1082
|
+
:ignore: true
|
1083
|
+
:children:
|
1084
|
+
CacheNode:
|
1085
|
+
:rename: :cache_nodes
|
1086
|
+
:list: true
|
1087
|
+
:children:
|
1088
|
+
CacheNodeCreateTime:
|
1089
|
+
:type: :time
|
1090
|
+
Endpoint:
|
1091
|
+
:children:
|
1092
|
+
Port:
|
1093
|
+
:type: :integer
|
1094
|
+
AutoMinorVersionUpgrade:
|
1095
|
+
:type: :boolean
|
1096
|
+
SecurityGroups:
|
1097
|
+
:ignore: true
|
1098
|
+
:children:
|
1099
|
+
member:
|
1100
|
+
:rename: :security_groups
|
1101
|
+
:list: true
|
1102
|
+
SnapshotRetentionLimit:
|
1103
|
+
:type: :integer
|
1104
|
+
:ignore: true
|
1105
|
+
- :name: ModifyCacheParameterGroup
|
1106
|
+
:method: :modify_cache_parameter_group
|
1107
|
+
:inputs:
|
1108
|
+
CacheParameterGroupName:
|
1109
|
+
- :string
|
1110
|
+
- :required
|
1111
|
+
ParameterNameValues:
|
1112
|
+
- :membered_list:
|
1113
|
+
- :structure:
|
1114
|
+
ParameterName:
|
1115
|
+
- :string
|
1116
|
+
ParameterValue:
|
1117
|
+
- :string
|
1118
|
+
- :required
|
1119
|
+
:outputs:
|
1120
|
+
:children:
|
1121
|
+
ModifyCacheParameterGroupResult:
|
1122
|
+
:ignore: true
|
1123
|
+
- :name: ModifyCacheSubnetGroup
|
1124
|
+
:method: :modify_cache_subnet_group
|
1125
|
+
:inputs:
|
1126
|
+
CacheSubnetGroupName:
|
1127
|
+
- :string
|
1128
|
+
- :required
|
1129
|
+
CacheSubnetGroupDescription:
|
1130
|
+
- :string
|
1131
|
+
SubnetIds:
|
1132
|
+
- :membered_list:
|
1133
|
+
- :string
|
1134
|
+
:outputs:
|
1135
|
+
:children:
|
1136
|
+
ModifyCacheSubnetGroupResult:
|
1137
|
+
:ignore: true
|
1138
|
+
:children:
|
1139
|
+
CacheSubnetGroup:
|
1140
|
+
:children:
|
1141
|
+
Subnets:
|
1142
|
+
:ignore: true
|
1143
|
+
:children:
|
1144
|
+
Subnet:
|
1145
|
+
:rename: :subnets
|
1146
|
+
:list: true
|
1147
|
+
:ignore: true
|
1148
|
+
- :name: ModifyReplicationGroup
|
1149
|
+
:method: :modify_replication_group
|
1150
|
+
:inputs:
|
1151
|
+
ReplicationGroupId:
|
1152
|
+
- :string
|
1153
|
+
- :required
|
1154
|
+
ReplicationGroupDescription:
|
1155
|
+
- :string
|
1156
|
+
CacheSecurityGroupNames:
|
1157
|
+
- :membered_list:
|
1158
|
+
- :string
|
1159
|
+
SecurityGroupIds:
|
1160
|
+
- :membered_list:
|
1161
|
+
- :string
|
1162
|
+
PreferredMaintenanceWindow:
|
1163
|
+
- :string
|
1164
|
+
NotificationTopicArn:
|
1165
|
+
- :string
|
1166
|
+
CacheParameterGroupName:
|
1167
|
+
- :string
|
1168
|
+
NotificationTopicStatus:
|
1169
|
+
- :string
|
1170
|
+
ApplyImmediately:
|
1171
|
+
- :boolean
|
1172
|
+
EngineVersion:
|
1173
|
+
- :string
|
1174
|
+
AutoMinorVersionUpgrade:
|
1175
|
+
- :boolean
|
1176
|
+
PrimaryClusterId:
|
1177
|
+
- :string
|
1178
|
+
SnapshotRetentionLimit:
|
1179
|
+
- :integer
|
1180
|
+
SnapshotWindow:
|
1181
|
+
- :string
|
1182
|
+
SnapshottingClusterId:
|
1183
|
+
- :string
|
1184
|
+
:outputs:
|
1185
|
+
:children:
|
1186
|
+
ModifyReplicationGroupResult:
|
1187
|
+
:ignore: true
|
1188
|
+
:children:
|
1189
|
+
ReplicationGroup:
|
1190
|
+
:children:
|
1191
|
+
MemberClusters:
|
1192
|
+
:ignore: true
|
1193
|
+
:children:
|
1194
|
+
ClusterId:
|
1195
|
+
:rename: :member_clusters
|
1196
|
+
:list: true
|
1197
|
+
NodeGroups:
|
1198
|
+
:ignore: true
|
1199
|
+
:children:
|
1200
|
+
NodeGroup:
|
1201
|
+
:rename: :node_groups
|
1202
|
+
:list: true
|
1203
|
+
:children:
|
1204
|
+
PrimaryEndpoint:
|
1205
|
+
:children:
|
1206
|
+
Port:
|
1207
|
+
:type: :integer
|
1208
|
+
NodeGroupMembers:
|
1209
|
+
:ignore: true
|
1210
|
+
:children:
|
1211
|
+
NodeGroupMember:
|
1212
|
+
:rename: :node_group_members
|
1213
|
+
:list: true
|
1214
|
+
:children:
|
1215
|
+
ReadEndpoint:
|
1216
|
+
:children:
|
1217
|
+
Port:
|
1218
|
+
:type: :integer
|
1219
|
+
:ignore: true
|
1220
|
+
- :name: PurchaseReservedCacheNodesOffering
|
1221
|
+
:method: :purchase_reserved_cache_nodes_offering
|
1222
|
+
:inputs:
|
1223
|
+
ReservedCacheNodesOfferingId:
|
1224
|
+
- :string
|
1225
|
+
- :required
|
1226
|
+
ReservedCacheNodeId:
|
1227
|
+
- :string
|
1228
|
+
CacheNodeCount:
|
1229
|
+
- :integer
|
1230
|
+
:outputs:
|
1231
|
+
:children:
|
1232
|
+
PurchaseReservedCacheNodesOfferingResult:
|
1233
|
+
:ignore: true
|
1234
|
+
:children:
|
1235
|
+
ReservedCacheNode:
|
1236
|
+
:children:
|
1237
|
+
StartTime:
|
1238
|
+
:type: :time
|
1239
|
+
Duration:
|
1240
|
+
:type: :integer
|
1241
|
+
FixedPrice:
|
1242
|
+
:type: :float
|
1243
|
+
UsagePrice:
|
1244
|
+
:type: :float
|
1245
|
+
CacheNodeCount:
|
1246
|
+
:type: :integer
|
1247
|
+
RecurringCharges:
|
1248
|
+
:ignore: true
|
1249
|
+
:children:
|
1250
|
+
RecurringCharge:
|
1251
|
+
:rename: :recurring_charges
|
1252
|
+
:list: true
|
1253
|
+
:children:
|
1254
|
+
RecurringChargeAmount:
|
1255
|
+
:type: :float
|
1256
|
+
:ignore: true
|
1257
|
+
- :name: RebootCacheCluster
|
1258
|
+
:method: :reboot_cache_cluster
|
1259
|
+
:inputs:
|
1260
|
+
CacheClusterId:
|
1261
|
+
- :string
|
1262
|
+
- :required
|
1263
|
+
CacheNodeIdsToReboot:
|
1264
|
+
- :membered_list:
|
1265
|
+
- :string
|
1266
|
+
- :required
|
1267
|
+
:outputs:
|
1268
|
+
:children:
|
1269
|
+
RebootCacheClusterResult:
|
1270
|
+
:ignore: true
|
1271
|
+
:children:
|
1272
|
+
CacheCluster:
|
1273
|
+
:children:
|
1274
|
+
ConfigurationEndpoint:
|
1275
|
+
:children:
|
1276
|
+
Port:
|
1277
|
+
:type: :integer
|
1278
|
+
NumCacheNodes:
|
1279
|
+
:type: :integer
|
1280
|
+
CacheClusterCreateTime:
|
1281
|
+
:type: :time
|
1282
|
+
PendingModifiedValues:
|
1283
|
+
:children:
|
1284
|
+
NumCacheNodes:
|
1285
|
+
:type: :integer
|
1286
|
+
CacheNodeIdsToRemove:
|
1287
|
+
:ignore: true
|
1288
|
+
:children:
|
1289
|
+
CacheNodeId:
|
1290
|
+
:rename: :cache_node_ids_to_remove
|
1291
|
+
:list: true
|
1292
|
+
CacheSecurityGroups:
|
1293
|
+
:ignore: true
|
1294
|
+
:children:
|
1295
|
+
CacheSecurityGroup:
|
1296
|
+
:rename: :cache_security_groups
|
1297
|
+
:list: true
|
1298
|
+
CacheParameterGroup:
|
1299
|
+
:children:
|
1300
|
+
CacheNodeIdsToReboot:
|
1301
|
+
:ignore: true
|
1302
|
+
:children:
|
1303
|
+
CacheNodeId:
|
1304
|
+
:rename: :cache_node_ids_to_reboot
|
1305
|
+
:list: true
|
1306
|
+
CacheNodes:
|
1307
|
+
:ignore: true
|
1308
|
+
:children:
|
1309
|
+
CacheNode:
|
1310
|
+
:rename: :cache_nodes
|
1311
|
+
:list: true
|
1312
|
+
:children:
|
1313
|
+
CacheNodeCreateTime:
|
1314
|
+
:type: :time
|
1315
|
+
Endpoint:
|
1316
|
+
:children:
|
1317
|
+
Port:
|
1318
|
+
:type: :integer
|
1319
|
+
AutoMinorVersionUpgrade:
|
1320
|
+
:type: :boolean
|
1321
|
+
SecurityGroups:
|
1322
|
+
:ignore: true
|
1323
|
+
:children:
|
1324
|
+
member:
|
1325
|
+
:rename: :security_groups
|
1326
|
+
:list: true
|
1327
|
+
SnapshotRetentionLimit:
|
1328
|
+
:type: :integer
|
1329
|
+
:ignore: true
|
1330
|
+
- :name: ResetCacheParameterGroup
|
1331
|
+
:method: :reset_cache_parameter_group
|
1332
|
+
:inputs:
|
1333
|
+
CacheParameterGroupName:
|
1334
|
+
- :string
|
1335
|
+
- :required
|
1336
|
+
ResetAllParameters:
|
1337
|
+
- :boolean
|
1338
|
+
ParameterNameValues:
|
1339
|
+
- :membered_list:
|
1340
|
+
- :structure:
|
1341
|
+
ParameterName:
|
1342
|
+
- :string
|
1343
|
+
ParameterValue:
|
1344
|
+
- :string
|
1345
|
+
- :required
|
1346
|
+
:outputs:
|
1347
|
+
:children:
|
1348
|
+
ResetCacheParameterGroupResult:
|
1349
|
+
:ignore: true
|
1350
|
+
- :name: RevokeCacheSecurityGroupIngress
|
1351
|
+
:method: :revoke_cache_security_group_ingress
|
1352
|
+
:inputs:
|
1353
|
+
CacheSecurityGroupName:
|
1354
|
+
- :string
|
1355
|
+
- :required
|
1356
|
+
EC2SecurityGroupName:
|
1357
|
+
- :string
|
1358
|
+
- :required
|
1359
|
+
EC2SecurityGroupOwnerId:
|
1360
|
+
- :string
|
1361
|
+
- :required
|
1362
|
+
:outputs:
|
1363
|
+
:children:
|
1364
|
+
RevokeCacheSecurityGroupIngressResult:
|
1365
|
+
:ignore: true
|
1366
|
+
:children:
|
1367
|
+
CacheSecurityGroup:
|
1368
|
+
:children:
|
1369
|
+
EC2SecurityGroups:
|
1370
|
+
:ignore: true
|
1371
|
+
:children:
|
1372
|
+
EC2SecurityGroup:
|
1373
|
+
:rename: :ec2_security_groups
|
1374
|
+
:list: true
|
1375
|
+
:ignore: true
|