1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/terremark/requests/shared/create_internet_service.rb
Edward Muller 7514c996cb Terremark::Shared
minimal support for TMRK eCloud.
Fixed a small issue with ComputeCapacity not working.

WIP: re-factor Ecloud/Vcloud into seperate modules. Add a shared module for anything shared. Putting everything in there for now. Will review vCloud vs. eCloud once this is done.

WIP ... Terremark::Shared

typo

re-lock

forgot to include parser

WIP shared

not sure how I lost Parsers

note that terremark said they're going to remove this in the future

minimal support for TMRK eCloud.
Fixed a small issue with ComputeCapacity not working.

WIP: re-factor Ecloud/Vcloud into seperate modules. Add a shared module for anything shared. Putting everything in there for now. Will review vCloud vs. eCloud once this is done.

WIP ... Terremark::Shared

typo

re-lock

oops

forgot to include parser

WIP shared

ecloud requires a vdc_id

relocked and got a newer net-ssh

ecloud requires a different path

addresses collection for Terremark

ecloud requires a vdc_id

missed the actual models

[terremark]: get_network request and assocaited parser

cut-n-paste error

[terremark] Network/Networks models

[terremark] don't really need these

cleanup
2010-04-24 12:15:47 -07:00

63 lines
2.1 KiB
Ruby

module Fog
module Terremark
module Shared
module Real
# Reserve requested resources and deploy vApp
#
# ==== Parameters
# * vdc_id<~Integer> - Id of vDc to add internet service to
# * name<~String> - Name of service
# * protocol<~String> - Protocol of service
# * port<~Integer> - Port of service
# * options<~Hash>:
# * Enabled<~Boolean>: defaults to true
# * Description<~String>: optional description
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'endTime'<~String> - endTime of task
# * 'href'<~String> - link to task
# * 'startTime'<~String> - startTime of task
# * 'status'<~String> - status of task
# * 'type'<~String> - type of task
# * 'Owner'<~String> -
# * 'href'<~String> - href of owner
# * 'name'<~String> - name of owner
# * 'type'<~String> - type of owner
def create_internet_service(vdc_id, name, protocol, port, options = {})
unless options.has_key?('Enabled')
options['Enabled'] = true
end
data = <<-DATA
<InternetService xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:tmrk:vCloudExpress-1.0:request:createInternetService">
<Name>#{name}</Name>
<Protocol>#{protocol.upcase}</Protocol>
<Port>#{port}</Port>
<Enabled>#{options['Enabled']}</Enabled>
<Description>#{options['Description']}</Description>
</InternetService>
DATA
request(
:body => data,
:expects => 200,
:headers => {'Content-Type' => 'application/xml'},
:method => 'POST',
:parser => Fog::Parsers::Terremark::Shared::InternetService.new,
:path => "vdc/#{vdc_id}/internetServices"
)
end
end
module Mock
def create_internet_service(vdc_id)
raise MockNotImplemented.new("Contributions welcome!")
end
end
end
end
end