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



37
38
39
40
# File 'lib/resources/aws/aws_vpcs.rb', line 37

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



33
34
35
# File 'lib/resources/aws/aws_vpcs.rb', line 33

def to_s
  'VPCs'
end

#validate_params(raw_params) ⇒ Object



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

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