Class: Twilio::REST::Serverless::V1::ServiceContext::FunctionContext::FunctionVersionContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/serverless/v1/service/function/function_version.rb

Overview

PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact [email protected].

Instance Method Summary collapse

Constructor Details

#initialize(version, service_sid, function_sid, sid) ⇒ FunctionVersionContext

Initialize the FunctionVersionContext

Parameters:

  • version (Version)

    Version that contains the resource

  • service_sid (String)

    The unique SID identifier of the Service for this Function Version.

  • function_sid (String)

    The unique SID identifier of the Function that is the parent for this Function Version.

  • sid (String)

    The unique SID identifier of this Function Version.



171
172
173
174
175
176
177
# File 'lib/twilio-ruby/rest/serverless/v1/service/function/function_version.rb', line 171

def initialize(version, service_sid, function_sid, sid)
  super(version)

  # Path Solution
  @solution = {service_sid: service_sid, function_sid: function_sid, sid: sid, }
  @uri = "/Services/#{@solution[:service_sid]}/Functions/#{@solution[:function_sid]}/Versions/#{@solution[:sid]}"
end

Instance Method Details

#fetchFunctionVersionInstance

Fetch a FunctionVersionInstance

Returns:



182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
# File 'lib/twilio-ruby/rest/serverless/v1/service/function/function_version.rb', line 182

def fetch
  params = Twilio::Values.of({})

  payload = @version.fetch(
      'GET',
      @uri,
      params,
  )

  FunctionVersionInstance.new(
      @version,
      payload,
      service_sid: @solution[:service_sid],
      function_sid: @solution[:function_sid],
      sid: @solution[:sid],
  )
end

#inspectObject

Provide a detailed, user friendly representation



209
210
211
212
# File 'lib/twilio-ruby/rest/serverless/v1/service/function/function_version.rb', line 209

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

#to_sObject

Provide a user friendly representation



202
203
204
205
# File 'lib/twilio-ruby/rest/serverless/v1/service/function/function_version.rb', line 202

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