Class: Twilio::REST::Video::V1::CompositionList
- Inherits:
-
ListResource
- Object
- ListResource
- Twilio::REST::Video::V1::CompositionList
- Defined in:
- lib/twilio-ruby/rest/video/v1/composition.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
-
#create(room_sid: nil, video_layout: :unset, audio_sources: :unset, audio_sources_excluded: :unset, resolution: :unset, format: :unset, status_callback: :unset, status_callback_method: :unset, trim: :unset) ⇒ CompositionInstance
Retrieve a single page of CompositionInstance records from the API.
-
#each ⇒ Object
When passed a block, yields CompositionInstance records from the API.
-
#get_page(target_url) ⇒ Page
Retrieve a single page of CompositionInstance records from the API.
-
#initialize(version) ⇒ CompositionList
constructor
Initialize the CompositionList.
-
#list(status: :unset, date_created_after: :unset, date_created_before: :unset, room_sid: :unset, limit: nil, page_size: nil) ⇒ Array
Lists CompositionInstance records from the API as a list.
-
#page(status: :unset, date_created_after: :unset, date_created_before: :unset, room_sid: :unset, page_token: :unset, page_number: :unset, page_size: :unset) ⇒ Page
Retrieve a single page of CompositionInstance records from the API.
-
#stream(status: :unset, date_created_after: :unset, date_created_before: :unset, room_sid: :unset, limit: nil, page_size: nil) ⇒ Enumerable
Streams CompositionInstance records from the API as an Enumerable.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version) ⇒ CompositionList
Initialize the CompositionList
20 21 22 23 24 25 26 |
# File 'lib/twilio-ruby/rest/video/v1/composition.rb', line 20 def initialize(version) super(version) # Path Solution @solution = {} @uri = "/Compositions" end |
Instance Method Details
#create(room_sid: nil, video_layout: :unset, audio_sources: :unset, audio_sources_excluded: :unset, resolution: :unset, format: :unset, status_callback: :unset, status_callback_method: :unset, trim: :unset) ⇒ CompositionInstance
Retrieve a single page of CompositionInstance records from the API. Request is executed immediately.
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 |
# File 'lib/twilio-ruby/rest/video/v1/composition.rb', line 216 def create(room_sid: nil, video_layout: :unset, audio_sources: :unset, audio_sources_excluded: :unset, resolution: :unset, format: :unset, status_callback: :unset, status_callback_method: :unset, trim: :unset) data = Twilio::Values.of({ 'RoomSid' => room_sid, 'VideoLayout' => Twilio.serialize_object(video_layout), 'AudioSources' => Twilio.serialize_list(audio_sources) { |e| e }, 'AudioSourcesExcluded' => Twilio.serialize_list(audio_sources_excluded) { |e| e }, 'Resolution' => resolution, 'Format' => format, 'StatusCallback' => status_callback, 'StatusCallbackMethod' => status_callback_method, 'Trim' => trim, }) payload = @version.create( 'POST', @uri, data: data ) CompositionInstance.new(@version, payload, ) end |
#each ⇒ Object
When passed a block, yields CompositionInstance records from the API. This operation lazily loads records as efficiently as possible until the limit is reached.
95 96 97 98 99 100 101 102 103 |
# File 'lib/twilio-ruby/rest/video/v1/composition.rb', line 95 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 CompositionInstance records from the API. Request is executed immediately.
143 144 145 146 147 148 149 |
# File 'lib/twilio-ruby/rest/video/v1/composition.rb', line 143 def get_page(target_url) response = @version.domain.request( 'GET', target_url ) CompositionPage.new(@version, response, @solution) end |
#list(status: :unset, date_created_after: :unset, date_created_before: :unset, room_sid: :unset, limit: nil, page_size: nil) ⇒ Array
Lists CompositionInstance records from the API as a list. Unlike stream(), this operation is eager and will load ‘limit` records into memory before returning.
47 48 49 50 51 52 53 54 55 56 |
# File 'lib/twilio-ruby/rest/video/v1/composition.rb', line 47 def list(status: :unset, date_created_after: :unset, date_created_before: :unset, room_sid: :unset, limit: nil, page_size: nil) self.stream( status: status, date_created_after: date_created_after, date_created_before: date_created_before, room_sid: room_sid, limit: limit, page_size: page_size ).entries end |
#page(status: :unset, date_created_after: :unset, date_created_before: :unset, room_sid: :unset, page_token: :unset, page_number: :unset, page_size: :unset) ⇒ Page
Retrieve a single page of CompositionInstance records from the API. Request is executed immediately.
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 |
# File 'lib/twilio-ruby/rest/video/v1/composition.rb', line 120 def page(status: :unset, date_created_after: :unset, date_created_before: :unset, room_sid: :unset, page_token: :unset, page_number: :unset, page_size: :unset) params = Twilio::Values.of({ 'Status' => status, 'DateCreatedAfter' => Twilio.serialize_iso8601_datetime(date_created_after), 'DateCreatedBefore' => Twilio.serialize_iso8601_datetime(date_created_before), 'RoomSid' => room_sid, 'PageToken' => page_token, 'Page' => page_number, 'PageSize' => page_size, }) response = @version.page( 'GET', @uri, params ) CompositionPage.new(@version, response, @solution) end |
#stream(status: :unset, date_created_after: :unset, date_created_before: :unset, room_sid: :unset, limit: nil, page_size: nil) ⇒ Enumerable
Streams CompositionInstance records from the API as an Enumerable. This operation lazily loads records as efficiently as possible until the limit is reached.
77 78 79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/twilio-ruby/rest/video/v1/composition.rb', line 77 def stream(status: :unset, date_created_after: :unset, date_created_before: :unset, room_sid: :unset, limit: nil, page_size: nil) limits = @version.read_limits(limit, page_size) page = self.page( status: status, date_created_after: date_created_after, date_created_before: date_created_before, room_sid: room_sid, page_size: limits[:page_size], ) @version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit]) end |
#to_s ⇒ Object
Provide a user friendly representation
240 241 242 |
# File 'lib/twilio-ruby/rest/video/v1/composition.rb', line 240 def to_s '#<Twilio.Video.V1.CompositionList>' end |