Class: Twilio::REST::Serverless::V1::ServiceContext::EnvironmentContext::LogContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb

Overview

PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.

Instance Method Summary collapse

Constructor Details

#initialize(version, service_sid, environment_sid, sid) ⇒ LogContext

Initialize the LogContext

Parameters:

  • version (Version)

    Version that contains the resource

  • service_sid (String)

    The SID of the Service to fetch the Log resource from.

  • environment_sid (String)

    The SID of the environment with the Log resource to fetch.

  • sid (String)

    The SID of the Log resource to fetch.



157
158
159
160
161
162
163
164
165
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 157

def initialize(version, service_sid, environment_sid, sid)
    super(version)

    # Path Solution
    @solution = { service_sid: service_sid, environment_sid: environment_sid, sid: sid,  }
    @uri = "/Services/#{@solution[:service_sid]}/Environments/#{@solution[:environment_sid]}/Logs/#{@solution[:sid]}"

    
end

Instance Method Details

#fetchLogInstance

Fetch the LogInstance

Returns:



169
170
171
172
173
174
175
176
177
178
179
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 169

def fetch

    payload = @version.fetch('GET', @uri)
    LogInstance.new(
        @version,
        payload,
        service_sid: @solution[:service_sid],
        environment_sid: @solution[:environment_sid],
        sid: @solution[:sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



191
192
193
194
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 191

def inspect
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Serverless.V1.LogContext #{context}>"
end

#to_sObject

Provide a user friendly representation



184
185
186
187
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 184

def to_s
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Serverless.V1.LogContext #{context}>"
end