Sha256: e6ee98d985eb541a5d2de0b9e9f0d5859fd4b13e88b0cf375fcb93f1b77cd4f0
Contents?: true
Size: 1.14 KB
Versions: 9
Compression:
Stored size: 1.14 KB
Contents
# Copyright 2011-2012 Amazon.com, Inc. or its affiliates. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"). You # may not use this file except in compliance with the License. A copy of # the License is located at # # http://aws.amazon.com/apache2.0/ # # or in the "license" file accompanying this file. This file is # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF # ANY KIND, either express or implied. See the License for the specific # language governing permissions and limitations under the License. module AWS module Core class JsonClient < Client include Core::ConfiguredJsonClientMethods protected def new_request req = super req.headers["content-type"] = "application/x-amz-json-1.0" req end protected def extract_error_code response if response.http_response.status >= 300 and body = response.http_response.body and json = (JSON.load(body) rescue nil) and type = json["__type"] and type =~ /\#(.*)$/ $1 end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems