Class: SnapDeploy::Provider::Heroku::API::LogSession

Inherits:
Object
  • Object
show all
Defined in:
lib/snap_deploy/provider/heroku/api.rb

Overview

A log session is a reference to the http based log stream for an app.

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ LogSession

Returns a new instance of LogSession.



1015
1016
1017
# File 'lib/snap_deploy/provider/heroku/api.rb', line 1015

def initialize(client)
  @client = client
end

Instance Method Details

#create(app_id_or_app_name, body) ⇒ Object

Create a new log session.

Parameters:

  • app_id_or_app_name:

    unique identifier of app or unique name of app

  • body:

    the object to pass as the request payload



1023
1024
1025
# File 'lib/snap_deploy/provider/heroku/api.rb', line 1023

def create(app_id_or_app_name, body)
  @client.log_session.create(app_id_or_app_name, body)
end