Class: Aws::RightErrorResponseParser

Inherits:
AwsParser show all
Defined in:
lib/awsbase/right_awsbase.rb

Overview

<Error>

<Code>TemporaryRedirect</Code>
<Message>Please re-send this request to the specified temporary endpoint. Continue to use the original request endpoint for future requests.</Message>
<RequestId>FD8D5026D1C5ABA3</RequestId>
<Endpoint>bucket-for-k.s3-external-3.amazonaws.com</Endpoint>
<HostId>ItJy8xPFPli1fq/JR3DzQd3iDvFCRqi1LTRmunEdM1Uf6ZtW2r2kfGPWhRE1vtaU</HostId>
<Bucket>bucket-for-k</Bucket>

</Error>

Constant Summary

Constants inherited from AwsParser

AwsParser::DEFAULT_XML_LIBRARY

Instance Attribute Summary collapse

Attributes inherited from AwsParser

#result, #xml_lib, #xmlpath

Instance Method Summary collapse

Methods inherited from AwsParser

#initialize, #method_missing, #parse, #tag_end, #tag_start, #tagstart, #tagtext, #text, xml_lib, xml_lib=

Constructor Details

This class inherits a constructor from Aws::AwsParser

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Aws::AwsParser

Instance Attribute Details

#errorsObject

:nodoc:



1213
1214
1215
# File 'lib/awsbase/right_awsbase.rb', line 1213

def errors
  @errors
end

#requestIDObject

Returns the value of attribute requestID.



1214
1215
1216
# File 'lib/awsbase/right_awsbase.rb', line 1214

def requestID
  @requestID
end

Instance Method Details

#resetObject



1232
1233
1234
# File 'lib/awsbase/right_awsbase.rb', line 1232

def reset
    @errors = []
end

#tagend(name) ⇒ Object

attr_accessor :endpoint, :host_id, :bucket



1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
# File 'lib/awsbase/right_awsbase.rb', line 1216

def tagend(name)
    case name
        when 'RequestID';
            @requestID = @text
        when 'Code';
            @code = @text
        when 'Message';
            @message = @text
#       when 'Endpoint'  ; @endpoint  = @text
#       when 'HostId'    ; @host_id   = @text
#       when 'Bucket'    ; @bucket    = @text
        when 'Error';
            @errors << [@code, @message]
    end
end