Sha256: 5db62ebd54b8140ea603cdf235290a3ff8829bfea39a5a1dd4a496c5dee90c4d
Contents?: true
Size: 1.52 KB
Versions: 3
Compression:
Stored size: 1.52 KB
Contents
require 'aws-sdk' require 'awspec/helper/finder/vpc' require 'awspec/helper/finder/ec2' require 'awspec/helper/finder/security_group' require 'awspec/helper/finder/rds' require 'awspec/helper/finder/route53' require 'awspec/helper/finder/s3' require 'awspec/helper/finder/auto_scaling' require 'awspec/helper/finder/ebs' require 'awspec/helper/finder/elb' require 'awspec/helper/finder/lambda' require 'awspec/helper/finder/iam' require 'awspec/helper/finder/elasticache' module Awspec::Helper module Finder attr_reader :ec2_client include Awspec::Helper::Finder::Vpc include Awspec::Helper::Finder::Ec2 include Awspec::Helper::Finder::SecurityGroup include Awspec::Helper::Finder::Rds include Awspec::Helper::Finder::Route53 include Awspec::Helper::Finder::S3 include Awspec::Helper::Finder::AutoScaling include Awspec::Helper::Finder::Ebs include Awspec::Helper::Finder::Elb include Awspec::Helper::Finder::Lambda include Awspec::Helper::Finder::Iam include Awspec::Helper::Finder::Elasticache # rubocop:disable all def initialize(id = nil) @ec2_client = Aws::EC2::Client.new @rds_client = Aws::RDS::Client.new @route53_client = Aws::Route53::Client.new @s3_client = Aws::S3::Client.new @auto_scaling_client = Aws::AutoScaling::Client.new @elb_client = Aws::ElasticLoadBalancing::Client.new @lambda_client = Aws::Lambda::Client.new @iam_client = Aws::IAM::Client.new @elasticache_client = Aws::ElastiCache::Client.new end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
awspec-0.14.1 | lib/awspec/helper/finder.rb |
awspec-0.14.0 | lib/awspec/helper/finder.rb |
awspec-0.13.0 | lib/awspec/helper/finder.rb |