Class: Twilio::REST::Notify::V1::CredentialContext

Inherits:
InstanceContext show all
Defined in:
lib/twilio-ruby/rest/notify/v1/credential.rb

Overview

PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.

Instance Method Summary collapse

Constructor Details

#initialize(version, sid) ⇒ CredentialContext

Initialize the CredentialContext



173
174
175
176
177
178
179
180
181
# File 'lib/twilio-ruby/rest/notify/v1/credential.rb', line 173

def initialize(version, sid)
    super(version)

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

    
end

Instance Method Details

#deleteBoolean

Delete the CredentialInstance



185
186
187
188
189
# File 'lib/twilio-ruby/rest/notify/v1/credential.rb', line 185

def delete

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

#fetchCredentialInstance

Fetch the CredentialInstance



194
195
196
197
198
199
200
201
202
203
# File 'lib/twilio-ruby/rest/notify/v1/credential.rb', line 194

def fetch

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

#inspectObject

Provide a detailed, user friendly representation



251
252
253
254
# File 'lib/twilio-ruby/rest/notify/v1/credential.rb', line 251

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

#to_sObject

Provide a user friendly representation



244
245
246
247
# File 'lib/twilio-ruby/rest/notify/v1/credential.rb', line 244

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

#update(friendly_name: :unset, certificate: :unset, private_key: :unset, sandbox: :unset, api_key: :unset, secret: :unset) ⇒ CredentialInstance

Update the CredentialInstance



214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
# File 'lib/twilio-ruby/rest/notify/v1/credential.rb', line 214

def update(
    friendly_name: :unset, 
    certificate: :unset, 
    private_key: :unset, 
    sandbox: :unset, 
    api_key: :unset, 
    secret: :unset
)

    data = Twilio::Values.of({
        'FriendlyName' => friendly_name,
        'Certificate' => certificate,
        'PrivateKey' => private_key,
        'Sandbox' => sandbox,
        'ApiKey' => api_key,
        'Secret' => secret,
    })

    
    payload = @version.update('POST', @uri, data: data)
    CredentialInstance.new(
        @version,
        payload,
        sid: @solution[:sid],
    )
end