Class: Twilio::REST::Api::V2010::AccountContext::NewSigningKeyList
- Inherits:
-
ListResource
- Object
- ListResource
- Twilio::REST::Api::V2010::AccountContext::NewSigningKeyList
- Defined in:
- lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb
Instance Method Summary collapse
-
#create(friendly_name: :unset) ⇒ NewSigningKeyInstance
Create the NewSigningKeyInstance.
-
#initialize(version, account_sid: nil) ⇒ NewSigningKeyList
constructor
Initialize the NewSigningKeyList.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, account_sid: nil) ⇒ NewSigningKeyList
Initialize the NewSigningKeyList
28 29 30 31 32 33 34 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb', line 28 def initialize(version, account_sid: nil) super(version) # Path Solution @solution = { account_sid: account_sid } @uri = "/Accounts/#{@solution[:account_sid]}/SigningKeys.json" end |
Instance Method Details
#create(friendly_name: :unset) ⇒ NewSigningKeyInstance
Create the NewSigningKeyInstance
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb', line 39 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) NewSigningKeyInstance.new( @version, payload, account_sid: @solution[:account_sid], ) end |
#to_s ⇒ Object
Provide a user friendly representation
65 66 67 |
# File 'lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb', line 65 def to_s '#<Twilio.Api.V2010.NewSigningKeyList>' end |