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

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.



188
189
190
191
192
193
194
195
196
197
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 188

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:



201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 201

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_metadataLogInstance

Fetch the LogInstanceMetadata

Returns:



222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 222

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],
    )
    .new(
        @version,
        log_instance,
        response.headers,
        response.status_code
    )
end

#inspectObject

Provide a detailed, user friendly representation



256
257
258
259
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 256

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

#to_sObject

Provide a user friendly representation



249
250
251
252
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 249

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