Sha256: 564f1641b3f84cac740d6faa0004e6056ee53924dfafe62b1a0cde83b12074f4
Contents?: true
Size: 597 Bytes
Versions: 15
Compression:
Stored size: 597 Bytes
Contents
require 'fog/core/model' module Fog module VPN class StormOnDemand class Vpn < Fog::Model identity :uniq_id attribute :active attribute :activeStatus attribute :current_users attribute :domain attribute :max_users attribute :network_range attribute :region_id attribute :vpn def initialize(attributes={}) super end def update(options={}) requires :identity service.update_vpn({:uniq_id => identity}.merge!(options)) end end end end end
Version data entries
15 entries across 15 versions & 4 rubygems