Class: Twilio::REST::Insights::V1::RoomList
- Inherits:
-
ListResource
- Object
- ListResource
- Twilio::REST::Insights::V1::RoomList
- Defined in:
- lib/twilio-ruby/rest/insights/v1/room.rb
Instance Method Summary collapse
-
#each ⇒ Object
When passed a block, yields RoomInstance records from the API.
-
#get_page(target_url) ⇒ Page
Retrieve a single page of RoomInstance records from the API.
-
#initialize(version) ⇒ RoomList
constructor
Initialize the RoomList.
-
#list(room_type: :unset, codec: :unset, room_name: :unset, created_after: :unset, created_before: :unset, limit: nil, page_size: nil) ⇒ Array
Lists RoomInstance records from the API as a list.
-
#page(room_type: :unset, codec: :unset, room_name: :unset, created_after: :unset, created_before: :unset, page_token: :unset, page_number: :unset, page_size: :unset) ⇒ Page
Retrieve a single page of RoomInstance records from the API.
-
#stream(room_type: :unset, codec: :unset, room_name: :unset, created_after: :unset, created_before: :unset, limit: nil, page_size: nil) ⇒ Enumerable
Streams Instance records from the API as an Enumerable.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version) ⇒ RoomList
Initialize the RoomList
26 27 28 29 30 31 32 |
# File 'lib/twilio-ruby/rest/insights/v1/room.rb', line 26 def initialize(version) super(version) # Path Solution @solution = { } @uri = "/Video/Rooms" end |
Instance Method Details
#each ⇒ Object
When passed a block, yields RoomInstance records from the API. This operation lazily loads records as efficiently as possible until the limit is reached.
96 97 98 99 100 101 102 103 104 |
# File 'lib/twilio-ruby/rest/insights/v1/room.rb', line 96 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 RoomInstance records from the API. Request is executed immediately.
145 146 147 148 149 150 151 |
# File 'lib/twilio-ruby/rest/insights/v1/room.rb', line 145 def get_page(target_url) response = @version.domain.request( 'GET', target_url ) RoomPage.new(@version, response, @solution) end |
#list(room_type: :unset, codec: :unset, room_name: :unset, created_after: :unset, created_before: :unset, limit: nil, page_size: nil) ⇒ Array
Lists RoomInstance records from the API as a list. Unlike stream(), this operation is eager and will load ‘limit` records into memory before returning.
50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/twilio-ruby/rest/insights/v1/room.rb', line 50 def list(room_type: :unset, codec: :unset, room_name: :unset, created_after: :unset, created_before: :unset, limit: nil, page_size: nil) self.stream( room_type: room_type, codec: codec, room_name: room_name, created_after: created_after, created_before: created_before, limit: limit, page_size: page_size ).entries end |
#page(room_type: :unset, codec: :unset, room_name: :unset, created_after: :unset, created_before: :unset, page_token: :unset, page_number: :unset, page_size: :unset) ⇒ Page
Retrieve a single page of RoomInstance records from the API. Request is executed immediately.
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
# File 'lib/twilio-ruby/rest/insights/v1/room.rb', line 118 def page(room_type: :unset, codec: :unset, room_name: :unset, created_after: :unset, created_before: :unset, page_token: :unset, page_number: :unset, page_size: :unset) params = Twilio::Values.of({ 'RoomType' => Twilio.serialize_list(room_type) { |e| e }, 'Codec' => Twilio.serialize_list(codec) { |e| e }, 'RoomName' => room_name, 'CreatedAfter' => Twilio.serialize_iso8601_datetime(created_after), 'CreatedBefore' => Twilio.serialize_iso8601_datetime(created_before), 'PageToken' => page_token, 'Page' => page_number, 'PageSize' => page_size, }) headers = Twilio::Values.of({}) response = @version.page('GET', @uri, params: params, headers: headers) RoomPage.new(@version, response, @solution) end |
#stream(room_type: :unset, codec: :unset, room_name: :unset, created_after: :unset, created_before: :unset, limit: nil, page_size: nil) ⇒ Enumerable
Streams Instance records from the API as an Enumerable. This operation lazily loads records as efficiently as possible until the limit is reached.
78 79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/twilio-ruby/rest/insights/v1/room.rb', line 78 def stream(room_type: :unset, codec: :unset, room_name: :unset, created_after: :unset, created_before: :unset, limit: nil, page_size: nil) limits = @version.read_limits(limit, page_size) page = self.page( room_type: room_type, codec: codec, room_name: room_name, created_after: created_after, created_before: created_before, 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
156 157 158 |
# File 'lib/twilio-ruby/rest/insights/v1/room.rb', line 156 def to_s '#<Twilio.Insights.V1.RoomList>' end |