Class: Twilio::REST::Serverless::V1::ServiceContext::EnvironmentContext::LogContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Serverless::V1::ServiceContext::EnvironmentContext::LogContext
- Defined in:
- lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb
Overview
PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact [email protected].
Instance Method Summary collapse
-
#fetch ⇒ LogInstance
Fetch a LogInstance.
-
#initialize(version, service_sid, environment_sid, sid) ⇒ LogContext
constructor
Initialize the LogContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, service_sid, environment_sid, sid) ⇒ LogContext
Initialize the LogContext
203 204 205 206 207 208 209 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 203 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
#fetch ⇒ LogInstance
Fetch a LogInstance
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 214 def fetch params = Twilio::Values.of({}) payload = @version.fetch( 'GET', @uri, params, ) LogInstance.new( @version, payload, service_sid: @solution[:service_sid], environment_sid: @solution[:environment_sid], sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
241 242 243 244 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 241 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Serverless.V1.LogContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
234 235 236 237 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 234 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Serverless.V1.LogContext #{context}>" end |