Class: Twilio::REST::Trunking::V1::TrunkContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Trunking::V1::TrunkContext
- Defined in:
- lib/twilio-ruby/rest/trunking/v1/trunk.rb,
lib/twilio-ruby/rest/trunking/v1/trunk/recording.rb,
lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb,
lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb,
lib/twilio-ruby/rest/trunking/v1/trunk/origination_url.rb,
lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb
Defined Under Namespace
Classes: CredentialListContext, CredentialListInstance, CredentialListList, CredentialListPage, IpAccessControlListContext, IpAccessControlListInstance, IpAccessControlListList, IpAccessControlListPage, OriginationUrlContext, OriginationUrlInstance, OriginationUrlList, OriginationUrlPage, PhoneNumberContext, PhoneNumberInstance, PhoneNumberList, PhoneNumberPage, RecordingContext, RecordingInstance, RecordingList, RecordingPage
Instance Method Summary collapse
-
#credentials_lists(sid = :unset) ⇒ CredentialListList, CredentialListContext
Access the credentials_lists.
-
#delete ⇒ Boolean
Delete the TrunkInstance.
-
#fetch ⇒ TrunkInstance
Fetch the TrunkInstance.
-
#initialize(version, sid) ⇒ TrunkContext
constructor
Initialize the TrunkContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#ip_access_control_lists(sid = :unset) ⇒ IpAccessControlListList, IpAccessControlListContext
Access the ip_access_control_lists.
-
#origination_urls(sid = :unset) ⇒ OriginationUrlList, OriginationUrlContext
Access the origination_urls.
-
#phone_numbers(sid = :unset) ⇒ PhoneNumberList, PhoneNumberContext
Access the phone_numbers.
-
#recordings ⇒ RecordingList, RecordingContext
Access the recordings.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(friendly_name: :unset, domain_name: :unset, disaster_recovery_url: :unset, disaster_recovery_method: :unset, transfer_mode: :unset, secure: :unset, cnam_lookup_enabled: :unset) ⇒ TrunkInstance
Update the TrunkInstance.
Constructor Details
#initialize(version, sid) ⇒ TrunkContext
Initialize the TrunkContext
197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk.rb', line 197 def initialize(version, sid) super(version) # Path Solution @solution = {sid: sid, } @uri = "/Trunks/#{@solution[:sid]}" # Dependents @origination_urls = nil @credentials_lists = nil @ip_access_control_lists = nil @phone_numbers = nil @recordings = nil end |
Instance Method Details
#credentials_lists(sid = :unset) ⇒ CredentialListList, CredentialListContext
Access the credentials_lists
298 299 300 301 302 303 304 305 306 307 308 309 310 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk.rb', line 298 def credentials_lists(sid=:unset) raise ArgumentError, 'sid cannot be nil' if sid.nil? if sid != :unset return CredentialListContext.new(@version, @solution[:sid], sid, ) end unless @credentials_lists @credentials_lists = CredentialListList.new(@version, trunk_sid: @solution[:sid], ) end @credentials_lists end |
#delete ⇒ Boolean
Delete the TrunkInstance
224 225 226 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk.rb', line 224 def delete @version.delete('DELETE', @uri) end |
#fetch ⇒ TrunkInstance
Fetch the TrunkInstance
215 216 217 218 219 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk.rb', line 215 def fetch payload = @version.fetch('GET', @uri) TrunkInstance.new(@version, payload, sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
365 366 367 368 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk.rb', line 365 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Trunking.V1.TrunkContext #{context}>" end |
#ip_access_control_lists(sid = :unset) ⇒ IpAccessControlListList, IpAccessControlListContext
Access the ip_access_control_lists
316 317 318 319 320 321 322 323 324 325 326 327 328 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk.rb', line 316 def ip_access_control_lists(sid=:unset) raise ArgumentError, 'sid cannot be nil' if sid.nil? if sid != :unset return IpAccessControlListContext.new(@version, @solution[:sid], sid, ) end unless @ip_access_control_lists @ip_access_control_lists = IpAccessControlListList.new(@version, trunk_sid: @solution[:sid], ) end @ip_access_control_lists end |
#origination_urls(sid = :unset) ⇒ OriginationUrlList, OriginationUrlContext
Access the origination_urls
280 281 282 283 284 285 286 287 288 289 290 291 292 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk.rb', line 280 def origination_urls(sid=:unset) raise ArgumentError, 'sid cannot be nil' if sid.nil? if sid != :unset return OriginationUrlContext.new(@version, @solution[:sid], sid, ) end unless @origination_urls @origination_urls = OriginationUrlList.new(@version, trunk_sid: @solution[:sid], ) end @origination_urls end |
#phone_numbers(sid = :unset) ⇒ PhoneNumberList, PhoneNumberContext
Access the phone_numbers
334 335 336 337 338 339 340 341 342 343 344 345 346 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk.rb', line 334 def phone_numbers(sid=:unset) raise ArgumentError, 'sid cannot be nil' if sid.nil? if sid != :unset return PhoneNumberContext.new(@version, @solution[:sid], sid, ) end unless @phone_numbers @phone_numbers = PhoneNumberList.new(@version, trunk_sid: @solution[:sid], ) end @phone_numbers end |
#recordings ⇒ RecordingList, RecordingContext
Access the recordings
352 353 354 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk.rb', line 352 def recordings RecordingContext.new(@version, @solution[:sid], ) end |
#to_s ⇒ Object
Provide a user friendly representation
358 359 360 361 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk.rb', line 358 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Trunking.V1.TrunkContext #{context}>" end |
#update(friendly_name: :unset, domain_name: :unset, disaster_recovery_url: :unset, disaster_recovery_method: :unset, transfer_mode: :unset, secure: :unset, cnam_lookup_enabled: :unset) ⇒ TrunkInstance
Update the TrunkInstance
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk.rb', line 260 def update(friendly_name: :unset, domain_name: :unset, disaster_recovery_url: :unset, disaster_recovery_method: :unset, transfer_mode: :unset, secure: :unset, cnam_lookup_enabled: :unset) data = Twilio::Values.of({ 'FriendlyName' => friendly_name, 'DomainName' => domain_name, 'DisasterRecoveryUrl' => disaster_recovery_url, 'DisasterRecoveryMethod' => disaster_recovery_method, 'TransferMode' => transfer_mode, 'Secure' => secure, 'CnamLookupEnabled' => cnam_lookup_enabled, }) payload = @version.update('POST', @uri, data: data) TrunkInstance.new(@version, payload, sid: @solution[:sid], ) end |