Sha256: 96ea1932eea141e40966e9a6ad73e328c4a9a13f02886a60c0d41ab348051c27

Contents?: true

Size: 1.86 KB

Versions: 19

Compression:

Stored size: 1.86 KB

Contents

module Fog
  module Openstack
    class Planning
      class Real
        def list_plans(options = {})
          request(
            :expects => [200, 204],
            :method  => 'GET',
            :path    => 'plans',
            :query   => options
          )
        end
      end # class Real

      class Mock
        def list_plans(options = {})
          response = Excon::Response.new
          response.status = [200, 204][rand(1)]
          response.body = [
            {
              "created_at" => "2014-09-26T20:23:14.222815",
              "description" => "Development testing cloud",
              "name" => "dev-cloud",
              "parameters" =>
              [
                {
                  "default" => "guest",
                  "description" => "The password for RabbitMQ",
                  "hidden" => true,
                  "label" => nil,
                  "name" => "compute-1 => =>RabbitPassword",
                  "value" => "secret-password"
                },
                {
                  "default" => "default",
                  "description" => "description",
                  "hidden" => true,
                  "label" => nil,
                  "name" => "name",
                  "value" => "value"
                },
              ],
              "roles" =>
              [
                {
                  "description" => "OpenStack hypervisor node. Can be wrapped in a ResourceGroup for scaling.\n",
                  "name" => "compute",
                  "uuid" => "b7b1583c-5c80-481f-a25b-708ed4a39734",
                  "version" => 1
                }
              ],
              "updated_at" => nil,
              "uuid" => "53268a27-afc8-4b21-839f-90227dd7a001"
            }
          ]
          response
        end # def list_plans
      end # class Mock
    end # class Planning
  end # module Openstack
end # module Fog

Version data entries

19 entries across 19 versions & 3 rubygems

Version Path
fog-openstack-0.1.10 lib/fog/openstack/requests/planning/list_plans.rb
fog-openstack-0.1.9 lib/fog/openstack/requests/planning/list_plans.rb
fog-openstack-0.1.8 lib/fog/openstack/requests/planning/list_plans.rb
fog-openstack-0.1.7 lib/fog/openstack/requests/planning/list_plans.rb
fog-openstack-0.1.6 lib/fog/openstack/requests/planning/list_plans.rb
fog-openstack-0.1.5 lib/fog/openstack/requests/planning/list_plans.rb
fog-openstack-0.1.4 lib/fog/openstack/requests/planning/list_plans.rb
fog-openstack-0.1.3 lib/fog/openstack/requests/planning/list_plans.rb
fog-openstack-0.1.2 lib/fog/openstack/requests/planning/list_plans.rb
fog-openstack-0.1.1 lib/fog/openstack/requests/planning/list_plans.rb
fog-openstack-0.1.0 lib/fog/openstack/requests/planning/list_plans.rb
fog-1.37.0 lib/fog/openstack/requests/planning/list_plans.rb
fog-1.36.0 lib/fog/openstack/requests/planning/list_plans.rb
fog-1.35.0 lib/fog/openstack/requests/planning/list_plans.rb
fog-2.0.0.pre.0 lib/fog/openstack/requests/planning/list_plans.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/openstack/requests/planning/list_plans.rb
fog-1.34.0 lib/fog/openstack/requests/planning/list_plans.rb
fog-1.33.0 lib/fog/openstack/requests/planning/list_plans.rb
fog-1.32.0 lib/fog/openstack/requests/planning/list_plans.rb