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
Create the NewKeyInstance.
-
#create_with_metadata(friendly_name: :unset) ⇒ NewKeyInstance
Create the NewKeyInstanceMetadata.
-
#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
28 29 30 31 32 33 34 35 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_key.rb', line 28 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
Create the NewKeyInstance
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_key.rb', line 40 def create( friendly_name: :unset ) data = Twilio::Values.of({ 'FriendlyName' => friendly_name, }) headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.create('POST', @uri, data: data, headers: headers) NewKeyInstance.new( @version, payload, account_sid: @solution[:account_sid], ) end |
#create_with_metadata(friendly_name: :unset) ⇒ NewKeyInstance
Create the NewKeyInstanceMetadata
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_key.rb', line 66 def ( friendly_name: :unset ) data = Twilio::Values.of({ 'FriendlyName' => friendly_name, }) headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) response = @version.('POST', @uri, data: data, headers: headers) new_key_instance = NewKeyInstance.new( @version, response.body, account_sid: @solution[:account_sid], ) NewKeyInstanceMetadata.new( @version, new_key_instance, response.headers, response.status_code ) end |
#to_s ⇒ Object
Provide a user friendly representation
98 99 100 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_key.rb', line 98 def to_s '#<Twilio.Api.V2010.NewKeyList>' end |