class VendorApi
Public Class Methods
new(api_token = nil)
click to toggle source
# File lib/replicatedvendor.rb, line 6 def initialize(api_token = nil) @api_token = api_token @client = ApiClient.new() @client.set_token(@api_token) end
Public Instance Methods
app()
click to toggle source
# File lib/replicatedvendor.rb, line 12 def app return App.new(@client) end
apps()
click to toggle source
# File lib/replicatedvendor.rb, line 16 def apps return Apps.new(@client) end
auditlog()
click to toggle source
# File lib/replicatedvendor.rb, line 20 def auditlog return AuditLog.new(@client) end
auth()
click to toggle source
# File lib/replicatedvendor.rb, line 24 def auth return Auth.new(@client) end
channel()
click to toggle source
# File lib/replicatedvendor.rb, line 28 def channel return Channel.new(@client) end
licenes()
click to toggle source
# File lib/replicatedvendor.rb, line 36 def licenes return Licenses.new(@client) end
license()
click to toggle source
# File lib/replicatedvendor.rb, line 32 def license return License.new(@client) end
release()
click to toggle source
# File lib/replicatedvendor.rb, line 40 def release return Release.new(@client) end
releases()
click to toggle source
# File lib/replicatedvendor.rb, line 44 def releases return Releases.new(@client) end
team()
click to toggle source
# File lib/replicatedvendor.rb, line 48 def team return Team.new(@client) end