Class: Twilio::REST::Accounts::V1::CredentialList::PublicKeyContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, sid) ⇒ PublicKeyContext

Initialize the PublicKeyContext

Parameters:

  • version (Version)

    Version that contains the resource

  • sid (String)

    The Twilio-provided string that uniquely identifies the PublicKey resource to fetch.



180
181
182
183
184
185
186
# File 'lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb', line 180

def initialize(version, sid)
  super(version)

  # Path Solution
  @solution = {sid: sid, }
  @uri = "/Credentials/PublicKeys/#{@solution[:sid]}"
end

Instance Method Details

#deleteBoolean

Deletes the PublicKeyInstance

Returns:

  • (Boolean)

    true if delete succeeds, true otherwise



223
224
225
# File 'lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb', line 223

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

#fetchPublicKeyInstance

Fetch a PublicKeyInstance

Returns:



191
192
193
194
195
196
197
198
199
200
201
# File 'lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb', line 191

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

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

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

#inspectObject

Provide a detailed, user friendly representation



236
237
238
239
# File 'lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb', line 236

def inspect
  context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
  "#<Twilio.Accounts.V1.PublicKeyContext #{context}>"
end

#to_sObject

Provide a user friendly representation



229
230
231
232
# File 'lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb', line 229

def to_s
  context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
  "#<Twilio.Accounts.V1.PublicKeyContext #{context}>"
end

#update(friendly_name: :unset) ⇒ PublicKeyInstance

Update the PublicKeyInstance

Parameters:

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

    A descriptive string that you create to describe the resource. It can be up to 64 characters long.

Returns:



208
209
210
211
212
213
214
215
216
217
218
# File 'lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb', line 208

def update(friendly_name: :unset)
  data = Twilio::Values.of({'FriendlyName' => friendly_name, })

  payload = @version.update(
      'POST',
      @uri,
      data: data,
  )

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