Class: Twilio::REST::Api::V2010::AccountContext::NewKeyList
- Inherits:
-
ListResource
- Object
- ListResource
- Twilio::REST::Api::V2010::AccountContext::NewKeyList
- Defined in:
- lib/twilio-ruby/rest/api/v2010/account/new_key.rb
Instance Method Summary collapse
-
#create(friendly_name: :unset) ⇒ NewKeyInstance
Retrieve a single page of NewKeyInstance records from the API.
-
#initialize(version, account_sid: nil) ⇒ NewKeyList
constructor
Initialize the NewKeyList.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, account_sid: nil) ⇒ NewKeyList
Initialize the NewKeyList
19 20 21 22 23 24 25 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_key.rb', line 19 def initialize(version, account_sid: nil) super(version) # Path Solution @solution = {account_sid: account_sid} @uri = "/Accounts/#{@solution[:account_sid]}/Keys.json" end |
Instance Method Details
#create(friendly_name: :unset) ⇒ NewKeyInstance
Retrieve a single page of NewKeyInstance records from the API. Request is executed immediately.
32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_key.rb', line 32 def create(friendly_name: :unset) data = Twilio::Values.of({'FriendlyName' => friendly_name}) payload = @version.create( 'POST', @uri, data: data ) NewKeyInstance.new(@version, payload, account_sid: @solution[:account_sid]) end |
#to_s ⇒ Object
Provide a user friendly representation
46 47 48 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_key.rb', line 46 def to_s '#<Twilio.Api.V2010.NewKeyList>' end |