Class: Twilio::REST::Api::V2010::AccountContext::KeyContext
- Inherits:
- 
      InstanceContext
      
        - Object
- InstanceContext
- Twilio::REST::Api::V2010::AccountContext::KeyContext
 
- Defined in:
- lib/twilio-ruby/rest/api/v2010/account/key.rb
Instance Method Summary collapse
- 
  
    
      #delete  ⇒ Boolean 
    
    
  
  
  
  
  
  
  
  
  
    Delete the KeyInstance. 
- 
  
    
      #fetch  ⇒ KeyInstance 
    
    
  
  
  
  
  
  
  
  
  
    Fetch the KeyInstance. 
- 
  
    
      #initialize(version, account_sid, sid)  ⇒ KeyContext 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    Initialize the KeyContext. 
- 
  
    
      #inspect  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Provide a detailed, user friendly representation. 
- 
  
    
      #to_s  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Provide a user friendly representation. 
- 
  
    
      #update(friendly_name: :unset)  ⇒ KeyInstance 
    
    
  
  
  
  
  
  
  
  
  
    Update the KeyInstance. 
Constructor Details
#initialize(version, account_sid, sid) ⇒ KeyContext
Initialize the KeyContext
| 155 156 157 158 159 160 161 | # File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 155 def initialize(version, account_sid, sid) super(version) # Path Solution @solution = {account_sid: account_sid, sid: sid, } @uri = "/Accounts/#{@solution[:account_sid]}/Keys/#{@solution[:sid]}.json" end | 
Instance Method Details
#delete ⇒ Boolean
Delete the KeyInstance
| 188 189 190 | # File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 188 def delete @version.delete('DELETE', @uri) end | 
#fetch ⇒ KeyInstance
Fetch the KeyInstance
| 166 167 168 169 170 | # File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 166 def fetch payload = @version.fetch('GET', @uri) KeyInstance.new(@version, payload, account_sid: @solution[:account_sid], sid: @solution[:sid], ) end | 
#inspect ⇒ Object
Provide a detailed, user friendly representation
| 201 202 203 204 | # File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 201 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Api.V2010.KeyContext #{context}>" end | 
#to_s ⇒ Object
Provide a user friendly representation
| 194 195 196 197 | # File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 194 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Api.V2010.KeyContext #{context}>" end | 
#update(friendly_name: :unset) ⇒ KeyInstance
Update the KeyInstance
| 177 178 179 180 181 182 183 | # File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 177 def update(friendly_name: :unset) data = Twilio::Values.of({'FriendlyName' => friendly_name, }) payload = @version.update('POST', @uri, data: data) KeyInstance.new(@version, payload, account_sid: @solution[:account_sid], sid: @solution[:sid], ) end |