Sha256: c031fc0e1cea2dfd6e7273ee69e08c333e69a64925e5ebb1491719710c8aa5e3
Contents?: true
Size: 748 Bytes
Versions: 1
Compression:
Stored size: 748 Bytes
Contents
# XXX: see https://github.com/aws/aws-sdk-core-ruby/pull/171 module Seahorse module Util IAM_paginators_json = /\bIAM.paginators.json\z/ class << self alias orig_load_json load_json def load_json(path) json = orig_load_json(path) if IAM_paginators_json =~ path add_GetAccountAuthorizationDetails_paginator(json) else json end end private def add_GetAccountAuthorizationDetails_paginator(json) json["GetAccountAuthorizationDetails"] = { "input_token" => "Marker", "output_token" => "Marker", "more_results" => "IsTruncated", "limit_key" => "MaxItems", } json end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
miam-0.2.0.beta2 | lib/miam/ext/aws_ext.rb |