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
Instance Method Summary collapse
-
#fetch ⇒ LogInstance
Fetch the LogInstance.
-
#fetch_with_metadata ⇒ LogInstance
Fetch the LogInstanceMetadata.
-
#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
196 197 198 199 200 201 202 203 204 205 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 196 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 the LogInstance
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 209 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) LogInstance.new( @version, payload, service_sid: @solution[:service_sid], environment_sid: @solution[:environment_sid], sid: @solution[:sid], ) end |
#fetch_with_metadata ⇒ LogInstance
Fetch the LogInstanceMetadata
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 230 def headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) response = @version.('GET', @uri, headers: headers) log_instance = LogInstance.new( @version, response.body, service_sid: @solution[:service_sid], environment_sid: @solution[:environment_sid], sid: @solution[:sid], ) LogInstanceMetadata.new( @version, log_instance, response.headers, response.status_code ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
264 265 266 267 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 264 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Serverless.V1.LogContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
257 258 259 260 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 257 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Serverless.V1.LogContext #{context}>" end |