Sha256: 98fe6803145108dfeb008cb568606e1e9bc83bd2766010cbb330bdda71da62d0

Contents?: true

Size: 1.94 KB

Versions: 38

Compression:

Stored size: 1.94 KB

Contents

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

        # ==== Parameters
        # 
        # @param [Hash] options
        # * :cluster_identifier - (String) 
        #    The unique identifier of a cluster whose properties you are requesting. 
        #    This parameter isn't case sensitive. The default is that all clusters 
        #    defined for an account are returned.
        # * :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_DescribeClusters.html                
        def describe_clusters(options = {})
          cluster_identifier = options[:cluster_identifier]
          marker             = options[:marker]
          max_records        = options[:max_records]

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

          params[:query]['Action']            = 'DescribeClusters'
          params[:query]['ClusterIdentifier'] = cluster_identifier if cluster_identifier
          params[:query]['MaxRecords']        = max_records if max_records
          params[:query]['Marker']            = marker if marker

          request(params)
        end
      end
    end
  end
end

Version data entries

38 entries across 38 versions & 2 rubygems

Version Path
fog-maestrodev-1.20.0.20140305101839 lib/fog/aws/requests/redshift/describe_clusters.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/aws/requests/redshift/describe_clusters.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/aws/requests/redshift/describe_clusters.rb
fog-1.20.0 lib/fog/aws/requests/redshift/describe_clusters.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/aws/requests/redshift/describe_clusters.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/aws/requests/redshift/describe_clusters.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/aws/requests/redshift/describe_clusters.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/aws/requests/redshift/describe_clusters.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/aws/requests/redshift/describe_clusters.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/aws/requests/redshift/describe_clusters.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/aws/requests/redshift/describe_clusters.rb
fog-1.19.0 lib/fog/aws/requests/redshift/describe_clusters.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/aws/requests/redshift/describe_clusters.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/aws/requests/redshift/describe_clusters.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/aws/requests/redshift/describe_clusters.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/aws/requests/redshift/describe_clusters.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/aws/requests/redshift/describe_clusters.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/aws/requests/redshift/describe_clusters.rb
fog-maestrodev-1.18.0.20131209090811 lib/fog/aws/requests/redshift/describe_clusters.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/aws/requests/redshift/describe_clusters.rb