Class: AwsVpcs

Inherits:
Object
  • Object
show all
Includes:
AwsPluralResourceMixin
Defined in:
lib/resources/aws/aws_vpcs.rb

Defined Under Namespace

Classes: Backend

Instance Attribute Summary

Attributes included from AwsPluralResourceMixin

#table

Instance Method Summary collapse

Methods included from AwsPluralResourceMixin

included

Methods included from AwsResourceMixin

#catch_aws_errors, #check_resource_param_names, #initialize, #inspec_runner

Instance Method Details

#fetch_from_apiObject



35
36
37
38
# File 'lib/resources/aws/aws_vpcs.rb', line 35

def fetch_from_api
  describe_vpcs_response = BackendFactory.create(inspec_runner).describe_vpcs
  @table = describe_vpcs_response.to_h[:vpcs].map(&:to_h)
end

#to_sObject



31
32
33
# File 'lib/resources/aws/aws_vpcs.rb', line 31

def to_s
  'VPCs'
end

#validate_params(raw_params) ⇒ Object



23
24
25
26
27
28
29
# File 'lib/resources/aws/aws_vpcs.rb', line 23

def validate_params(raw_params)
  # No params yet
  unless raw_params.empty?
    raise ArgumentError, 'aws_vpcs does not accept resource parameters'
  end
  raw_params
end