Sha256: dec6a2b64fbd2a3e0d8cfdd4071a38ac71b1fc94cb74002880b24930e3ac33ff
Contents?: true
Size: 790 Bytes
Versions: 1
Compression:
Stored size: 790 Bytes
Contents
module Fog module AWS class SES class Real require 'rackspace-fog/aws/parsers/ses/get_send_quota' # Returns the user's current activity limits. # # ==== Parameters # # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * 'GetSendQuotaResult'<~Hash> # * 'Max24HourSend' <~String> # * 'MaxSendRate' <~String> # * 'SentLast24Hours' <~String> # * 'ResponseMetadata'<~Hash>: # * 'RequestId'<~String> - Id of request def get_send_quota request({ 'Action' => 'GetSendQuota', :parser => Fog::Parsers::AWS::SES::GetSendQuota.new }) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rackspace-fog-1.4.2 | lib/rackspace-fog/aws/requests/ses/get_send_quota.rb |