class Fog::Parsers::AWS::Base

Public Class Methods

arrays() click to toggle source
# File lib/ext_fog_aws/fog/parsers/aws/base.rb, line 17
def self.arrays
  ["member"]
end
aws_schema() click to toggle source
# File lib/ext_fog_aws/fog/parsers/aws/base.rb, line 13
def self.aws_schema
  {}
end
schema() click to toggle source
# File lib/ext_fog_aws/fog/parsers/aws/base.rb, line 5
def self.schema
  aws_schema.merge!({
    'ResponseMetadata' => {
      'RequestId' => :string
    }
  })
end

Public Instance Methods

reset() click to toggle source
Calls superclass method
# File lib/ext_fog_aws/fog/parsers/aws/base.rb, line 21
def reset
  super
  @response['ResponseMetadata'] = {}
end