Class: Twilio::REST::Autopilot::V1::AssistantContext::TaskContext::SampleList

Inherits:
ListResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/autopilot/v1/assistant/task/sample.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, assistant_sid: nil, task_sid: nil) ⇒ SampleList

Initialize the SampleList

Parameters:

  • version (Version)

    Version that contains the resource

  • assistant_sid (String) (defaults to: nil)

    The SID of the Assistant that is the parent of the Task associated with the resource.

  • task_sid (String) (defaults to: nil)

    The SID of the Task associated with the resource.


28
29
30
31
32
33
34
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/sample.rb', line 28

def initialize(version, assistant_sid: nil, task_sid: nil)
  super(version)

  # Path Solution
  @solution = {assistant_sid: assistant_sid, task_sid: task_sid}
  @uri = "/Assistants/#{@solution[:assistant_sid]}/Tasks/#{@solution[:task_sid]}/Samples"
end

Instance Method Details

#create(language: nil, tagged_text: nil, source_channel: :unset) ⇒ SampleInstance

Create the SampleInstance

Parameters:

  • language (String) (defaults to: nil)

    The ISO language-country string that specifies the language used for the new sample. For example: `en-US`.

  • tagged_text (String) (defaults to: nil)

    The text example of how end users might express the task. The sample can contain Field tag blocks.

  • source_channel (String) (defaults to: :unset)

    The communication channel from which the new sample was captured. Can be: `voice`, `sms`, `chat`, `alexa`, `google-assistant`, `slack`, or null if not included.

Returns:


139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/sample.rb', line 139

def create(language: nil, tagged_text: nil, source_channel: :unset)
  data = Twilio::Values.of({
      'Language' => language,
      'TaggedText' => tagged_text,
      'SourceChannel' => source_channel,
  })

  payload = @version.create('POST', @uri, data: data)

  SampleInstance.new(
      @version,
      payload,
      assistant_sid: @solution[:assistant_sid],
      task_sid: @solution[:task_sid],
  )
end

#eachObject

When passed a block, yields SampleInstance records from the API. This operation lazily loads records as efficiently as possible until the limit is reached.


80
81
82
83
84
85
86
87
88
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/sample.rb', line 80

def each
  limits = @version.read_limits

  page = self.page(page_size: limits[:page_size], )

  @version.stream(page,
                  limit: limits[:limit],
                  page_limit: limits[:page_limit]).each {|x| yield x}
end

#get_page(target_url) ⇒ Page

Retrieve a single page of SampleInstance records from the API. Request is executed immediately.

Parameters:

  • target_url (String)

    API-generated URL for the requested results page

Returns:

  • (Page)

    Page of SampleInstance


118
119
120
121
122
123
124
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/sample.rb', line 118

def get_page(target_url)
  response = @version.domain.request(
      'GET',
      target_url
  )
  SamplePage.new(@version, response, @solution)
end

#list(language: :unset, limit: nil, page_size: nil) ⇒ Array

Lists SampleInstance records from the API as a list. Unlike stream(), this operation is eager and will load `limit` records into memory before returning.

Parameters:

  • language (String) (defaults to: :unset)

    The ISO language-country string that specifies the language used for the sample. For example: `en-US`.

  • limit (Integer) (defaults to: nil)

    Upper limit for the number of records to return. stream() guarantees to never return more than limit. Default is no limit

  • page_size (Integer) (defaults to: nil)

    Number of records to fetch per request, when not set will use the default value of 50 records. If no page_size is defined but a limit is defined, stream() will attempt to read the limit with the most efficient page size, i.e. min(limit, 1000)

Returns:

  • (Array)

    Array of up to limit results


50
51
52
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/sample.rb', line 50

def list(language: :unset, limit: nil, page_size: nil)
  self.stream(language: language, limit: limit, page_size: page_size).entries
end

#page(language: :unset, page_token: :unset, page_number: :unset, page_size: :unset) ⇒ Page

Retrieve a single page of SampleInstance records from the API. Request is executed immediately.

Parameters:

  • language (String) (defaults to: :unset)

    The ISO language-country string that specifies the language used for the sample. For example: `en-US`.

  • page_token (String) (defaults to: :unset)

    PageToken provided by the API

  • page_number (Integer) (defaults to: :unset)

    Page Number, this value is simply for client state

  • page_size (Integer) (defaults to: :unset)

    Number of records to return, defaults to 50

Returns:

  • (Page)

    Page of SampleInstance


100
101
102
103
104
105
106
107
108
109
110
111
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/sample.rb', line 100

def page(language: :unset, page_token: :unset, page_number: :unset, page_size: :unset)
  params = Twilio::Values.of({
      'Language' => language,
      'PageToken' => page_token,
      'Page' => page_number,
      'PageSize' => page_size,
  })

  response = @version.page('GET', @uri, params: params)

  SamplePage.new(@version, response, @solution)
end

#stream(language: :unset, limit: nil, page_size: nil) ⇒ Enumerable

Streams SampleInstance records from the API as an Enumerable. This operation lazily loads records as efficiently as possible until the limit is reached.

Parameters:

  • language (String) (defaults to: :unset)

    The ISO language-country string that specifies the language used for the sample. For example: `en-US`.

  • limit (Integer) (defaults to: nil)

    Upper limit for the number of records to return. stream() guarantees to never return more than limit. Default is no limit.

  • page_size (Integer) (defaults to: nil)

    Number of records to fetch per request, when not set will use the default value of 50 records. If no page_size is defined but a limit is defined, stream() will attempt to read the limit with the most efficient page size, i.e. min(limit, 1000)

Returns:

  • (Enumerable)

    Enumerable that will yield up to limit results


68
69
70
71
72
73
74
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/sample.rb', line 68

def stream(language: :unset, limit: nil, page_size: nil)
  limits = @version.read_limits(limit, page_size)

  page = self.page(language: language, page_size: limits[:page_size], )

  @version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
end

#to_sObject

Provide a user friendly representation


158
159
160
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/sample.rb', line 158

def to_s
  '#<Twilio.Autopilot.V1.SampleList>'
end