Class: Twilio::REST::Api::V2010::AccountContext::KeyContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/api/v2010/account/key.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, account_sid, sid) ⇒ KeyContext

Initialize the KeyContext

Parameters:

  • version (Version)

    Version that contains the resource

  • account_sid (String)

    The account_sid

  • sid (String)

    The sid



152
153
154
155
156
157
158
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 152

def initialize(version, , sid)
  super(version)

  # Path Solution
  @solution = {account_sid: , sid: sid, }
  @uri = "/Accounts/#{@solution[:account_sid]}/Keys/#{@solution[:sid]}.json"
end

Instance Method Details

#deleteBoolean

Deletes the KeyInstance

Returns:

  • (Boolean)

    true if delete succeeds, true otherwise



194
195
196
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 194

def delete
  @version.delete('delete', @uri)
end

#fetchKeyInstance

Fetch a KeyInstance

Returns:



163
164
165
166
167
168
169
170
171
172
173
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 163

def fetch
  params = Twilio::Values.of({})

  payload = @version.fetch(
      'GET',
      @uri,
      params,
  )

  KeyInstance.new(@version, payload, account_sid: @solution[:account_sid], sid: @solution[:sid], )
end

#to_sObject

Provide a user friendly representation



200
201
202
203
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 200

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

Parameters:

  • friendly_name (String) (defaults to: :unset)

    The friendly_name

Returns:



179
180
181
182
183
184
185
186
187
188
189
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 179

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