class Easy::Resources::Adam::WebApplication

Public Class Methods

find_by_guid(guid) click to toggle source
# File lib/easy/resources/adam/web_application.rb, line 12
def self.find_by_guid(guid)
  first(params: { w: "guid|=|#{guid}" })
end
find_by_name(name) click to toggle source
# File lib/easy/resources/adam/web_application.rb, line 16
def self.find_by_name(name)
  first(params: { w: "name|=|#{name}" })
end