Class: PlatformAPI::LogSession
- Inherits:
-
Object
- Object
- PlatformAPI::LogSession
- Defined in:
- lib/platform-api/client.rb
Overview
A log session is a reference to the http based log stream for an app.
Instance Method Summary collapse
-
#create(app_id_or_app_name, body = {}) ⇒ Object
Create a new log session.
-
#initialize(client) ⇒ LogSession
constructor
A new instance of LogSession.
Constructor Details
#initialize(client) ⇒ LogSession
Returns a new instance of LogSession.
1433 1434 1435 |
# File 'lib/platform-api/client.rb', line 1433 def initialize(client) @client = client end |
Instance Method Details
#create(app_id_or_app_name, body = {}) ⇒ Object
Create a new log session.
1441 1442 1443 |
# File 'lib/platform-api/client.rb', line 1441 def create(app_id_or_app_name, body = {}) @client.log_session.create(app_id_or_app_name, body) end |