Sha256: 9fd13f9244d8a13f5676f81a16df92d160306699919978def89a82b47432bdeb

Contents?: true

Size: 1.61 KB

Versions: 23

Compression:

Stored size: 1.61 KB

Contents

# encoding: UTF-8

# (c) Copyright 2014 Hewlett-Packard Development Company, L.P.
#
#    Licensed under the Apache License, Version 2.0 (the "License");
#    you may not use this file except in compliance with the License.
#    You may obtain a copy of the License at
#
#        http://www.apache.org/licenses/LICENSE-2.0
#
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS,
#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#    See the License for the specific language governing permissions and
#    limitations under the License.

# This file is given as an example.
# This class is automatically derived from ForjCloudBase and ForjProcess
class Mycloud
  def provider_compute_new
    # My fog connection
    # hget_cloudObjMapping() is a ForjCloudBase function which will build a
    # hash from data required with needed mapped keys(see core.rb)
    Fog::Compute.new({ :provider => :mycloud }.merge(hget_cloudObjMapping))

    # If you do not want to get data mapped automatically, you can use
    # @oForjAccount.get()
    # This means in following declaration in your core.rb:
    # obj_needs(:data, :<CloudDataKey},{:mapping => :<MyCloudKeyMapped>})
    # can be updated by removing the mapping => <Value>
    Fog::Compute.new(
      :provider => :mycloud,
      :user => @oForjAccount.get(:account_id),
      :pwd => @oForjAccount.get(:account_key),
      :auth_uri => @oForjAccount.get(:auth_uri),
      :project => @oForjAccount.get(:tenant),
      :compute_service => @oForjAccount.get(:compute)
    )
  end
end

Version data entries

23 entries across 23 versions & 2 rubygems

Version Path
lorj_cloud-0.1.12 lib/process/cloud/providers/templates/compute.rb
lorj_cloud-0.1.11 lib/process/cloud/providers/templates/compute.rb
lorj-1.0.20 lib/providers/templates/compute.rb
lorj_cloud-0.1.10 lib/process/cloud/providers/templates/compute.rb
lorj_cloud-0.1.9 lib/process/cloud/providers/templates/compute.rb
lorj-1.0.19 lib/providers/templates/compute.rb
lorj_cloud-0.1.8 lib/process/cloud/providers/templates/compute.rb
lorj_cloud-0.1.7 lib/process/cloud/providers/templates/compute.rb
lorj-1.0.18 lib/providers/templates/compute.rb
lorj_cloud-0.1.6 lib/process/cloud/providers/templates/compute.rb
lorj-1.0.17 lib/providers/templates/compute.rb
lorj_cloud-0.1.5 lib/process/cloud/providers/templates/compute.rb
lorj-1.0.16 lib/providers/templates/compute.rb
lorj_cloud-0.1.4 lib/process/cloud/providers/templates/compute.rb
lorj-1.0.14 lib/providers/templates/compute.rb
lorj_cloud-0.1.3 lib/process/cloud/providers/templates/compute.rb
lorj-1.0.13 lib/providers/templates/compute.rb
lorj_cloud-0.1.2 lib/process/cloud/providers/templates/compute.rb
lorj-1.0.12 lib/providers/templates/compute.rb
lorj_cloud-0.1.1 lib/process/cloud/providers/templates/compute.rb