[DRE-commits] [ruby-fog-aws] 01/03: Merge tag 'upstream/0.12.0'

Micah Anderson micah at moszumanska.debian.org
Wed Nov 16 02:07:29 UTC 2016


This is an automated email from the git hooks/post-receive script.

micah pushed a commit to branch master
in repository ruby-fog-aws.

commit e0d7839ac10f7d7047de363f3c33e5bb0525ad8d
Merge: c61cdaf 83a5d3e
Author: Micah Anderson <micah at riseup.net>
Date:   Tue Nov 15 09:11:36 2016 -0500

    Merge tag 'upstream/0.12.0'
    
    Upstream version 0.12.0

 .travis.yml                                        |   4 +-
 CHANGELOG.md                                       |  97 ++++++++++++
 fog-aws.gemspec                                    |   4 +-
 gemfiles/Gemfile-ruby-1.9                          |   6 +
 lib/fog/aws.rb                                     |   4 +-
 lib/fog/aws/cloud_formation.rb                     |  14 ++
 lib/fog/aws/compute.rb                             |   2 +
 lib/fog/aws/credential_fetcher.rb                  |  34 ++++-
 lib/fog/aws/glacier.rb                             |   6 +-
 lib/fog/aws/iam.rb                                 |   6 +
 lib/fog/aws/models/compute/security_group.rb       |  75 +++++----
 lib/fog/aws/models/compute/vpc.rb                  |   6 +
 lib/fog/aws/models/dns/records.rb                  |   2 +-
 lib/fog/aws/models/rds/cluster.rb                  |   4 +-
 lib/fog/aws/models/storage/file.rb                 |  15 +-
 lib/fog/aws/models/support/flagged_resource.rb     |  14 ++
 lib/fog/aws/models/support/flagged_resources.rb    |  11 ++
 .../aws/models/support/trusted_advisor_check.rb    |  65 ++++++++
 .../aws/models/support/trusted_advisor_checks.rb   |  21 +++
 .../auto_scaling/describe_launch_configurations.rb |   3 +-
 lib/fog/aws/parsers/cloud_formation/basic.rb       |   8 +
 .../parsers/cloud_formation/create_change_set.rb   |  16 ++
 .../cloud_formation/describe_account_limits.rb     |  26 ++++
 .../parsers/cloud_formation/describe_change_set.rb | 135 ++++++++++++++++
 .../cloud_formation/describe_stack_resource.rb     |  28 ++++
 .../aws/parsers/cloud_formation/describe_stacks.rb |  17 ++-
 .../cloud_formation/estimate_template_cost.rb      |  16 ++
 .../parsers/cloud_formation/get_stack_policy.rb    |  16 ++
 .../cloud_formation/get_template_summary.rb        |  62 ++++++++
 .../parsers/cloud_formation/list_change_sets.rb    |  30 ++++
 lib/fog/aws/parsers/cloud_watch/describe_alarms.rb |  60 ++++++--
 lib/fog/aws/parsers/compute/describe_vpcs.rb       |   4 +-
 lib/fog/aws/parsers/iam/list_policy_versions.rb    |  64 ++++++++
 lib/fog/aws/parsers/rds/copy_db_snapshot.rb        |  32 ++++
 .../parsers/rds/modify_db_snapshot_attribute.rb    |  24 +++
 lib/fog/aws/parsers/storage/get_bucket.rb          |   2 +-
 lib/fog/aws/rds.rb                                 |   2 +
 .../{delete_stack.rb => cancel_update_stack.rb}    |  10 +-
 ...delete_stack.rb => continue_update_rollback.rb} |  11 +-
 .../{create_stack.rb => create_change_set.rb}      |  58 +++----
 .../aws/requests/cloud_formation/create_stack.rb   |  14 ++
 .../requests/cloud_formation/delete_change_set.rb  |  26 ++++
 .../aws/requests/cloud_formation/delete_stack.rb   |   2 +-
 .../cloud_formation/describe_account_limits.rb     |  27 ++++
 .../cloud_formation/describe_change_set.rb         |  43 ++++++
 .../cloud_formation/describe_stack_resource.rb     |  40 +++++
 .../{update_stack.rb => estimate_template_cost.rb} |  34 ++---
 .../requests/cloud_formation/execute_change_set.rb |  26 ++++
 .../requests/cloud_formation/get_stack_policy.rb   |  27 ++++
 .../cloud_formation/get_template_summary.rb        |  46 ++++++
 .../requests/cloud_formation/list_change_sets.rb   |  40 +++++
 .../requests/cloud_formation/set_stack_policy.rb   |  38 +++++
 .../requests/cloud_formation/signal_resource.rb    |  32 ++++
 .../aws/requests/cloud_formation/update_stack.rb   |  49 ++++++
 .../compute/authorize_security_group_egress.rb     | 112 ++++++++++++++
 .../compute/describe_availability_zones.rb         |   3 +
 .../compute/revoke_security_group_egress.rb        |  98 ++++++++++++
 .../requests/dns/change_resource_record_sets.rb    |  23 ++-
 lib/fog/aws/requests/glacier/create_archive.rb     |   2 +-
 lib/fog/aws/requests/glacier/upload_part.rb        |   2 +-
 lib/fog/aws/requests/iam/create_policy_version.rb  |  63 ++++++++
 lib/fog/aws/requests/iam/delete_policy_version.rb  |  41 +++++
 .../requests/iam/list_attached_role_policies.rb    |  89 +++++++++++
 lib/fog/aws/requests/iam/list_policy_versions.rb   |  84 ++++++++++
 .../aws/requests/iam/set_default_policy_version.rb |  42 +++++
 .../aws/requests/iam/update_assume_role_policy.rb  |  41 +++++
 lib/fog/aws/requests/rds/copy_db_snapshot.rb       |  53 +++++++
 .../requests/rds/modify_db_snapshot_attribute.rb   |  48 ++++++
 lib/fog/aws/requests/sqs/send_message.rb           |   2 +-
 .../requests/storage/delete_multiple_objects.rb    |   2 +-
 .../aws/requests/storage/post_object_restore.rb    |   2 +-
 lib/fog/aws/requests/storage/put_bucket.rb         |   3 +-
 lib/fog/aws/requests/storage/put_bucket_acl.rb     |   2 +-
 lib/fog/aws/requests/storage/put_bucket_cors.rb    |   2 +-
 .../aws/requests/storage/put_bucket_lifecycle.rb   |   2 +-
 .../requests/storage/put_bucket_notification.rb    |   2 +-
 lib/fog/aws/requests/storage/put_bucket_tagging.rb |   2 +-
 lib/fog/aws/requests/storage/put_object_acl.rb     |   2 +-
 .../aws/requests/storage/shared_mock_methods.rb    |   2 +-
 .../describe_trusted_advisor_check_result.rb       |  31 ++++
 .../support/describe_trusted_advisor_checks.rb     |  29 ++++
 lib/fog/aws/signaturev4.rb                         |   4 +-
 lib/fog/aws/storage.rb                             |   6 +-
 lib/fog/aws/support.rb                             | 170 +++++++++++++++++++++
 lib/fog/aws/version.rb                             |   2 +-
 tests/credentials_tests.rb                         |  22 ++-
 tests/models/compute/security_group_tests.rb       |  24 +++
 tests/models/storage/file_tests.rb                 |   2 +-
 tests/models/support/trusted_advisor_tests.rb      |  25 +++
 tests/requests/glacier/tree_hash_tests.rb          |  34 ++---
 tests/requests/iam/managed_policy_tests.rb         |  23 ++-
 .../requests/iam/versioned_managed_policy_tests.rb | 114 ++++++++++++++
 tests/requests/rds/db_snapshot_tests.rb            |  62 ++++++++
 tests/requests/rds/helper.rb                       |   7 +-
 tests/requests/support/helper.rb                   |  43 ++++++
 .../support/trusted_advisor_check_tests.rb         |  16 ++
 96 files changed, 2619 insertions(+), 177 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-fog-aws.git



More information about the Pkg-ruby-extras-commits mailing list