Sha256: 36766fd3da980923c822861ac9b4eaccd407951b746d45e9a0c23ce1f85b2c1e
Contents?: true
Size: 599 Bytes
Versions: 53
Compression:
Stored size: 599 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
53 entries across 53 versions & 3 rubygems