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.
-
#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
159 160 161 162 163 164 165 166 167 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 159 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
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 171 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 |
#inspect ⇒ Object
Provide a detailed, user friendly representation
199 200 201 202 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 199 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Serverless.V1.LogContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
192 193 194 195 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb', line 192 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Serverless.V1.LogContext #{context}>" end |