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

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

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, service_sid: nil, environment_sid: nil, sid: nil) ⇒ LogInstance

Initialize the LogInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String)

    The SID of the Account that created this Log resource.

  • sid (String) (defaults to: nil)

    The SID of the Call resource to fetch.



235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 235

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  || @properties['service_sid']  ,'environment_sid' => environment_sid  || @properties['environment_sid']  ,'sid' => sid  || @properties['sid']  , }
end

Instance Method Details

#account_sidString

Returns The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the Log resource.

Returns:



278
279
280
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 278

def 
    @properties['account_sid']
end

#build_sidString

Returns The SID of the build that corresponds to the log.

Returns:

  • (String)

    The SID of the build that corresponds to the log.



296
297
298
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 296

def build_sid
    @properties['build_sid']
end

#contextLogContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context

Returns:

  • (LogContext)

    CallContext for this CallInstance



263
264
265
266
267
268
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 263

def context
    unless @instance_context
        @instance_context = LogContext.new(@version , @params['service_sid'], @params['environment_sid'], @params['sid'])
    end
    @instance_context
end

#date_createdTime

Returns The date and time in GMT when the Log resource was created specified in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.

Returns:



332
333
334
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 332

def date_created
    @properties['date_created']
end

#deployment_sidString

Returns The SID of the deployment that corresponds to the log.

Returns:

  • (String)

    The SID of the deployment that corresponds to the log.



302
303
304
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 302

def deployment_sid
    @properties['deployment_sid']
end

#environment_sidString

Returns The SID of the environment in which the log occurred.

Returns:

  • (String)

    The SID of the environment in which the log occurred.



290
291
292
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 290

def environment_sid
    @properties['environment_sid']
end

#fetchLogInstance

Fetch the LogInstance

Returns:



345
346
347
348
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 345

def fetch

    context.fetch
end

#function_sidString

Returns The SID of the function whose invocation produced the log.

Returns:

  • (String)

    The SID of the function whose invocation produced the log.



308
309
310
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 308

def function_sid
    @properties['function_sid']
end

#inspectObject

Provide a detailed, user friendly representation



359
360
361
362
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 359

def inspect
    values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Serverless.V1.LogInstance #{values}>"
end

#levelLevel

Returns:

  • (Level)


320
321
322
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 320

def level
    @properties['level']
end

#messageString

Returns The log message.

Returns:

  • (String)

    The log message.



326
327
328
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 326

def message
    @properties['message']
end

#request_sidString

Returns The SID of the request associated with the log.

Returns:

  • (String)

    The SID of the request associated with the log.



314
315
316
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 314

def request_sid
    @properties['request_sid']
end

#service_sidString

Returns The SID of the Service that the Log resource is associated with.

Returns:

  • (String)

    The SID of the Service that the Log resource is associated with.



284
285
286
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 284

def service_sid
    @properties['service_sid']
end

#sidString

Returns The unique string that we created to identify the Log resource.

Returns:

  • (String)

    The unique string that we created to identify the Log resource.



272
273
274
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 272

def sid
    @properties['sid']
end

#to_sObject

Provide a user friendly representation



352
353
354
355
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 352

def to_s
    values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Serverless.V1.LogInstance #{values}>"
end

#urlString

Returns The absolute URL of the Log resource.

Returns:

  • (String)

    The absolute URL of the Log resource.



338
339
340
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 338

def url
    @properties['url']
end