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 update.



159
160
161
162
163
164
165
166
167
# File 'lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb', line 159

def initialize(version, sid)
    super(version)

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

    
end

Instance Method Details

#deleteBoolean

Delete the PublicKeyInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



171
172
173
174
# File 'lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb', line 171

def delete

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

#fetchPublicKeyInstance

Fetch the PublicKeyInstance

Returns:



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

def fetch

    payload = @version.fetch('GET', @uri)
    PublicKeyInstance.new(
        @version,
        payload,
        sid: @solution[:sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



219
220
221
222
# File 'lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb', line 219

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

#to_sObject

Provide a user friendly representation



212
213
214
215
# File 'lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb', line 212

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:



193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
# File 'lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb', line 193

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