Skip to content

Commit

Permalink
[Librarian] Regenerated @ ca60ab9a1fcae80e843c6a9c528092e08337d238
Browse files Browse the repository at this point in the history
  • Loading branch information
twilio-ci committed Feb 5, 2019
1 parent 9fc8e2f commit b5eeecf
Show file tree
Hide file tree
Showing 70 changed files with 5,680 additions and 2,633 deletions.
13 changes: 13 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
twilio-ruby changelog
=====================

[2019-02-04] Version 5.20.0
----------------------------
**Library**
- PR #437: Switch body validator to use hex instead of base64. Thanks to @cjcodes!

**Video**
- [Recordings] Add media type filter to list operation
- [Composer] Filter Composition Hook resources by FriendlyName

**Twiml**
- Update `language` enum for `Gather` to fix language code for Filipino (Philippines) and include additional supported languages **(breaking change)**


[2019-01-11] Version 5.19.0
----------------------------
**Library**
Expand Down
29 changes: 16 additions & 13 deletions lib/twilio-ruby/rest/api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,33 +44,35 @@ def accounts(sid=:unset)
end

##
# @param [String] sid A 34 character string that uniquely identifies this address.
# @param [String] sid The unique string that that we created to identify the
# Address resource.
# @return [Twilio::REST::Api::V2010::AccountContext::AddressInstance] if sid was passed.
# @return [Twilio::REST::Api::V2010::AccountContext::AddressList]
def addresses(sid=:unset)
self.account.addresses(sid)
end

##
# @param [String] sid A 34 character string that uniquely identifies this
# resource.
# @param [String] sid The unique string that that we created to identify the
# Application resource.
# @return [Twilio::REST::Api::V2010::AccountContext::ApplicationInstance] if sid was passed.
# @return [Twilio::REST::Api::V2010::AccountContext::ApplicationList]
def applications(sid=:unset)
self.account.applications(sid)
end

##
# @param [String] connect_app_sid The unique id of the Connect App that was
# authorized.
# @param [String] connect_app_sid The SID that we assigned to the Connect App.
# @return [Twilio::REST::Api::V2010::AccountContext::AuthorizedConnectAppInstance] if connect_app_sid was passed.
# @return [Twilio::REST::Api::V2010::AccountContext::AuthorizedConnectAppList]
def authorized_connect_apps(connect_app_sid=:unset)
self.account.authorized_connect_apps(connect_app_sid)
end

##
# @param [String] country_code The ISO Country code to lookup phone numbers for.
# @param [String] country_code The
# [ISO-3166-1](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country code of
# the country.
# @return [Twilio::REST::Api::V2010::AccountContext::AvailablePhoneNumberCountryInstance] if country_code was passed.
# @return [Twilio::REST::Api::V2010::AccountContext::AvailablePhoneNumberCountryList]
def available_phone_numbers(country_code=:unset)
Expand Down Expand Up @@ -102,16 +104,17 @@ def conferences(sid=:unset)
end

##
# @param [String] sid The unique id of this Connect App.
# @param [String] sid The unique string that that we created to identify the
# ConnectApp resource.
# @return [Twilio::REST::Api::V2010::AccountContext::ConnectAppInstance] if sid was passed.
# @return [Twilio::REST::Api::V2010::AccountContext::ConnectAppList]
def connect_apps(sid=:unset)
self.account.connect_apps(sid)
end

##
# @param [String] sid A 34 character string that uniquely identifies this
# resource.
# @param [String] sid The unique string that that we created to identify this
# IncomingPhoneNumber resource.
# @return [Twilio::REST::Api::V2010::AccountContext::IncomingPhoneNumberInstance] if sid was passed.
# @return [Twilio::REST::Api::V2010::AccountContext::IncomingPhoneNumberList]
def incoming_phone_numbers(sid=:unset)
Expand Down Expand Up @@ -149,17 +152,17 @@ def new_signing_keys
end

##
# @param [String] sid A 34 character string that uniquely identifies this
# resource.
# @param [String] sid The unique string that that we created to identify the
# Notification resource.
# @return [Twilio::REST::Api::V2010::AccountContext::NotificationInstance] if sid was passed.
# @return [Twilio::REST::Api::V2010::AccountContext::NotificationList]
def notifications(sid=:unset)
self.account.notifications(sid)
end

##
# @param [String] sid A 34 character string that uniquely identifies this
# resource.
# @param [String] sid The unique string that that we created to identify the
# OutgoingCallerId resource.
# @return [Twilio::REST::Api::V2010::AccountContext::OutgoingCallerIdInstance] if sid was passed.
# @return [Twilio::REST::Api::V2010::AccountContext::OutgoingCallerIdList]
def outgoing_caller_ids(sid=:unset)
Expand Down
Loading

0 comments on commit b5eeecf

Please sign in to comment.