Sha256: c7acff82a0f8617ce8f4e2873c3e3dacc005e463d260ce9587113895953c04b5

Contents?: true

Size: 762 Bytes

Versions: 45

Compression:

Stored size: 762 Bytes

Contents

module Fog
  module OpenStack
    class Planning
      class Real
        def get_plan_templates(plan_uuid)
          request(
            :expects => [200, 204],
            :method  => 'GET',
            :path    => "plans/#{plan_uuid}/templates"
          )
        end
      end

      class Mock
        def get_plan_templates(_plan_uuid)
          response = Excon::Response.new
          response.status = [200, 204][rand(2)]
          response.body = {
            "environment.yaml"        => "... content of template file ...",
            "plan.yaml"               => "... content of template file ...",
            "provider-compute-1.yaml" => "... content of template file ..."
          }
          response
        end
      end
    end
  end
end

Version data entries

45 entries across 43 versions & 5 rubygems

Version Path
fog-openstack-0.1.27 lib/fog/planning/openstack/requests/get_plan_templates.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-openstack-0.1.26/lib/fog/planning/openstack/requests/get_plan_templates.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-openstack-0.1.26/lib/fog/planning/openstack/requests/get_plan_templates.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-openstack-0.1.26/lib/fog/planning/openstack/requests/get_plan_templates.rb
fog-openstack-0.1.26 lib/fog/planning/openstack/requests/get_plan_templates.rb