class Fog::Workflow::OpenStack
Public Class Methods
new(args = {})
click to toggle source
::new will return a Fog::Workflow::OpenStack::V2
Will choose the latest available once Mistral V3 is released.
# File lib/fog/workflow/openstack.rb, line 6 def self.new(args = {}) @openstack_auth_uri = URI.parse(args[:openstack_auth_url]) if args[:openstack_auth_url] Fog::Workflow::OpenStack::V2.new(args) end