Sha256: d403d0db4e0b1d1b560da78431b1a80d95b514fc5113902368cc57e0e2a25674

Contents?: true

Size: 1.86 KB

Versions: 98

Compression:

Stored size: 1.86 KB

Contents

module Fog
  module AWS
    class Redshift
      class Real
        require 'fog/aws/parsers/redshift/describe_reserved_node_offerings'

        # ==== Parameters
        #
        # @param [Hash] options
        # * :reserved_node_offering_id - (String)
        #    The unique identifier for the offering.
        # * :max_records - (Integer)
        #    The maximum number of records to include in the response. If more than the
        #    MaxRecords value is available, a marker is included in the response so that the
        #    following results can be retrieved. Constrained between [20,100]. Default is 100.
        # * :marker - (String)
        #    The marker returned from a previous request. If this parameter is specified, the
        #    response includes records beyond the marker only, up to MaxRecords.
        #
        # ==== See Also
        # http://docs.aws.amazon.com/redshift/latest/APIReference/API_DescribeReservedNodeOfferings.html
        def describe_reserved_node_offerings(options = {})
          reserved_node_offering_id = options[:reserved_node_offering_id]
          marker                    = options[:marker]
          max_records               = options[:max_records]

          path = "/"
          params = {
            :idempotent => true,
            :headers    => {},
            :path       => path,
            :method     => :get,
            :query      => {},
            :parser     => Fog::Parsers::Redshift::AWS::DescribeReservedNodeOfferings.new
          }

          params[:query]['Action']         = 'DescribeReservedNodeOfferings'
          params[:query]['ReservedNodeOfferingId'] = reserved_node_offering_id if reserved_node_offering_id
          params[:query]['Marker']         = marker if marker
          params[:query]['MaxRecords']     = max_records if max_records

          request(params)
        end
      end
    end
  end
end

Version data entries

98 entries across 96 versions & 6 rubygems

Version Path
fog-aws-3.30.0 lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb
fog-aws-3.29.0 lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb
fog-aws-3.28.0 lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb
fog-aws-3.27.0 lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb
fog-aws-3.26.0 lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb
fog-aws-3.25.0 lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb
fog-aws-3.24.0 lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb
fog-aws-3.23.0 lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb
fog-aws-3.22.0 lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb
fog-aws-3.21.1 lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb
fog-aws-3.21.0 lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb
fog-aws-3.20.0 lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb
fog-aws-3.19.0 lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb
fog-aws-3.18.0 lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb
fog-aws-3.17.0 lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb
fog-aws-3.16.0 lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb
fog-aws-3.15.0 lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb
fog-aws-3.14.0 lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb
fog-aws-3.13.0 lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb
fog-aws-3.12.0 lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb