## # This code was generated by # ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ # | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ # | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ # # Twilio - Serverless # This is the public Twilio REST API. # # NOTE: This class is auto generated by OpenAPI Generator. # https://openapi-generator.tech # Do not edit the class manually. # module Twilio module REST class Serverless < ServerlessBase class V1 < Version class ServiceContext < InstanceContext class FunctionContext < InstanceContext class FunctionVersionContext < InstanceContext class FunctionVersionContentList < ListResource ## # Initialize the FunctionVersionContentList # @param [Version] version Version that contains the resource # @return [FunctionVersionContentList] FunctionVersionContentList def initialize(version, service_sid: nil, function_sid: nil, sid: nil) super(version) # Path Solution @solution = { service_sid: service_sid, function_sid: function_sid, sid: sid } end # Provide a user friendly representation def to_s '#' end end class FunctionVersionContentContext < InstanceContext ## # Initialize the FunctionVersionContentContext # @param [Version] version Version that contains the resource # @param [String] service_sid The SID of the Service to fetch the Function Version content from. # @param [String] function_sid The SID of the Function that is the parent of the Function Version content to fetch. # @param [String] sid The SID of the Function Version content to fetch. # @return [FunctionVersionContentContext] FunctionVersionContentContext 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]}/Content" end ## # Fetch the FunctionVersionContentInstance # @return [FunctionVersionContentInstance] Fetched FunctionVersionContentInstance def fetch payload = @version.fetch('GET', @uri) FunctionVersionContentInstance.new( @version, payload, service_sid: @solution[:service_sid], function_sid: @solution[:function_sid], sid: @solution[:sid], ) end ## # Provide a user friendly representation def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#" end ## # Provide a detailed, user friendly representation def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#" end end class FunctionVersionContentPage < Page ## # Initialize the FunctionVersionContentPage # @param [Version] version Version that contains the resource # @param [Response] response Response from the API # @param [Hash] solution Path solution for the resource # @return [FunctionVersionContentPage] FunctionVersionContentPage def initialize(version, response, solution) super(version, response) # Path Solution @solution = solution end ## # Build an instance of FunctionVersionContentInstance # @param [Hash] payload Payload response from the API # @return [FunctionVersionContentInstance] FunctionVersionContentInstance def get_instance(payload) FunctionVersionContentInstance.new(@version, payload, service_sid: @solution[:service_sid], function_sid: @solution[:function_sid], sid: @solution[:sid]) end ## # Provide a user friendly representation def to_s '' end end class FunctionVersionContentInstance < InstanceResource ## # Initialize the FunctionVersionContentInstance # @param [Version] version Version that contains the resource # @param [Hash] payload payload that contains response from Twilio # @param [String] account_sid The SID of the # {Account}[https://www.twilio.com/docs/iam/api/account] that created this FunctionVersionContent # resource. # @param [String] sid The SID of the Call resource to fetch. # @return [FunctionVersionContentInstance] FunctionVersionContentInstance def initialize(version, payload , service_sid: nil, function_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'account_sid' => payload['account_sid'], 'service_sid' => payload['service_sid'], 'function_sid' => payload['function_sid'], 'content' => payload['content'], 'url' => payload['url'], } # Context @instance_context = nil @params = { 'service_sid' => service_sid || @properties['service_sid'] ,'function_sid' => function_sid || @properties['function_sid'] ,'sid' => sid || @properties['sid'] , } end ## # Generate an instance context for the instance, the context is capable of # performing various actions. All instance actions are proxied to the context # @return [FunctionVersionContentContext] CallContext for this CallInstance def context unless @instance_context @instance_context = FunctionVersionContentContext.new(@version , @params['service_sid'], @params['function_sid'], @params['sid']) end @instance_context end ## # @return [String] The unique string that we created to identify the Function Version resource. def sid @properties['sid'] end ## # @return [String] The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Function Version resource. def account_sid @properties['account_sid'] end ## # @return [String] The SID of the Service that the Function Version resource is associated with. def service_sid @properties['service_sid'] end ## # @return [String] The SID of the Function that is the parent of the Function Version. def function_sid @properties['function_sid'] end ## # @return [String] The content of the Function Version resource. def content @properties['content'] end ## # @return [String] def url @properties['url'] end ## # Fetch the FunctionVersionContentInstance # @return [FunctionVersionContentInstance] Fetched FunctionVersionContentInstance def fetch context.fetch end ## # Provide a user friendly representation def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "" end ## # Provide a detailed, user friendly representation def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "" end end end end end end end end end