Sha256: 36b4930103426b686c17280e816fc802799d03cecb7b90f93833b9aff599b8b4
Contents?: true
Size: 615 Bytes
Versions: 42
Compression:
Stored size: 615 Bytes
Contents
module Fog module Workflow class OpenStack class V2 class Real def create_workbook(definition) body = Fog::JSON.encode(definition) request( :body => body, :expects => 201, :method => "POST", :path => "workbooks" ) end end class Mock def create_workbook(_definition) response = Excon::Response.new response.status = 201 response.body = "" response end end end end end end
Version data entries
42 entries across 40 versions & 3 rubygems
Version | Path |
---|---|
fog-openstack-0.1.9 | lib/fog/openstack/requests/workflow_v2/create_workbook.rb |
fog-openstack-0.1.8 | lib/fog/openstack/requests/workflow_v2/create_workbook.rb |