Class: Twilio::REST::Serverless::V1::ServiceContext::EnvironmentContext::LogInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Serverless::V1::ServiceContext::EnvironmentContext::LogInstance
- 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
-
#account_sid ⇒ String
The SID of the Account that created the Log resource.
-
#build_sid ⇒ String
The SID of the build that corresponds to the log.
-
#context ⇒ LogContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The ISO 8601 date and time in GMT when the Log resource was created.
-
#deployment_sid ⇒ String
The SID of the deployment that corresponds to the log.
-
#environment_sid ⇒ String
The SID of the environment in which the log occurred.
-
#fetch ⇒ LogInstance
Fetch the LogInstance.
-
#function_sid ⇒ String
The SID of the function whose invocation produced the log.
-
#initialize(version, payload, service_sid: nil, environment_sid: nil, sid: nil) ⇒ LogInstance
constructor
Initialize the LogInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#level ⇒ log.Level
The log level.
-
#message ⇒ String
The log message.
-
#request_sid ⇒ String
The SID of the request associated with the log.
-
#service_sid ⇒ String
The SID of the Service that the Log resource is associated with.
-
#sid ⇒ String
The unique string that identifies the Log resource.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#url ⇒ String
The absolute URL of the Log resource.
Constructor Details
#initialize(version, payload, service_sid: nil, environment_sid: nil, sid: nil) ⇒ LogInstance
Initialize the LogInstance
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 252 def initialize(version, payload, service_sid: nil, environment_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'account_sid' => payload['account_sid'], 'service_sid' => payload['service_sid'], 'environment_sid' => payload['environment_sid'], 'build_sid' => payload['build_sid'], 'deployment_sid' => payload['deployment_sid'], 'function_sid' => payload['function_sid'], 'request_sid' => payload['request_sid'], 'level' => payload['level'], 'message' => payload['message'], 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'url' => payload['url'], } # Context @instance_context = nil @params = { 'service_sid' => service_sid, 'environment_sid' => environment_sid, 'sid' => sid || @properties['sid'], } end |
Instance Method Details
#account_sid ⇒ String
Returns The SID of the Account that created the Log resource.
304 305 306 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 304 def account_sid @properties['account_sid'] end |
#build_sid ⇒ String
Returns The SID of the build that corresponds to the log.
322 323 324 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 322 def build_sid @properties['build_sid'] end |
#context ⇒ LogContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
284 285 286 287 288 289 290 291 292 293 294 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 284 def context unless @instance_context @instance_context = LogContext.new( @version, @params['service_sid'], @params['environment_sid'], @params['sid'], ) end @instance_context end |
#date_created ⇒ Time
Returns The ISO 8601 date and time in GMT when the Log resource was created.
358 359 360 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 358 def date_created @properties['date_created'] end |
#deployment_sid ⇒ String
Returns The SID of the deployment that corresponds to the log.
328 329 330 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 328 def deployment_sid @properties['deployment_sid'] end |
#environment_sid ⇒ String
Returns The SID of the environment in which the log occurred.
316 317 318 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 316 def environment_sid @properties['environment_sid'] end |
#fetch ⇒ LogInstance
Fetch the LogInstance
371 372 373 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 371 def fetch context.fetch end |
#function_sid ⇒ String
Returns The SID of the function whose invocation produced the log.
334 335 336 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 334 def function_sid @properties['function_sid'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
384 385 386 387 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 384 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Serverless.V1.LogInstance #{values}>" end |
#level ⇒ log.Level
Returns The log level.
346 347 348 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 346 def level @properties['level'] end |
#message ⇒ String
Returns The log message.
352 353 354 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 352 def @properties['message'] end |
#request_sid ⇒ String
Returns The SID of the request associated with the log.
340 341 342 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 340 def request_sid @properties['request_sid'] end |
#service_sid ⇒ String
Returns The SID of the Service that the Log resource is associated with.
310 311 312 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 310 def service_sid @properties['service_sid'] end |
#sid ⇒ String
Returns The unique string that identifies the Log resource.
298 299 300 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 298 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
377 378 379 380 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 377 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Serverless.V1.LogInstance #{values}>" end |
#url ⇒ String
Returns The absolute URL of the Log resource.
364 365 366 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 364 def url @properties['url'] end |