Sha256: ef01c3f14cc2bc941b077a5c100e685d94b0d816ade5132d5b708487d5bfc9bf
Contents?: true
Size: 467 Bytes
Versions: 22
Compression:
Stored size: 467 Bytes
Contents
module Fog module OpenStack class Workflow < Fog::Service autoload :V2, 'fog/openstack/workflow/v2' # Fog::OpenStack::Workflow.new() will return a Fog::OpenStack::Workflow::V2 # Will choose the latest available once Mistral V3 is released. def self.new(args = {}) @openstack_auth_uri = URI.parse(args[:openstack_auth_url]) if args[:openstack_auth_url] Fog::OpenStack::Workflow::V2.new(args) end end end end
Version data entries
22 entries across 22 versions & 3 rubygems