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.
-
#delete_with_metadata ⇒ Boolean
Delete the KeyInstanceMetadata.
-
#fetch ⇒ KeyInstance
Fetch the KeyInstance.
-
#fetch_with_metadata ⇒ KeyInstance
Fetch the KeyInstanceMetadata.
-
#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.
-
#update_with_metadata(friendly_name: :unset) ⇒ KeyInstance
Update the KeyInstanceMetadata.
Constructor Details
#initialize(version, account_sid, sid) ⇒ KeyContext
Initialize the KeyContext
170 171 172 173 174 175 176 177 178 179 |
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 170 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
183 184 185 186 187 188 189 190 191 |
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 183 def delete headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) @version.delete('DELETE', @uri, headers: headers) end |
#delete_with_metadata ⇒ Boolean
Delete the KeyInstanceMetadata
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 196 def headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) response = @version.('DELETE', @uri, headers: headers) key_instance = KeyInstance.new( @version, response.body, account_sid: @solution[:account_sid], sid: @solution[:sid], ) KeyInstanceMetadata.new(@version, key_instance, response.headers, response.status_code) end |
#fetch ⇒ KeyInstance
Fetch the KeyInstance
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 |
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 215 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) KeyInstance.new( @version, payload, account_sid: @solution[:account_sid], sid: @solution[:sid], ) end |
#fetch_with_metadata ⇒ KeyInstance
Fetch the KeyInstanceMetadata
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 |
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 235 def headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) response = @version.('GET', @uri, headers: headers) key_instance = KeyInstance.new( @version, response.body, account_sid: @solution[:account_sid], sid: @solution[:sid], ) KeyInstanceMetadata.new( @version, key_instance, response.headers, response.status_code ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
328 329 330 331 |
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 328 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Api.V2010.KeyContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
321 322 323 324 |
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 321 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
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 |
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 262 def update( friendly_name: :unset ) data = Twilio::Values.of({ 'FriendlyName' => friendly_name, }) headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.update('POST', @uri, data: data, headers: headers) KeyInstance.new( @version, payload, account_sid: @solution[:account_sid], sid: @solution[:sid], ) end |
#update_with_metadata(friendly_name: :unset) ⇒ KeyInstance
Update the KeyInstanceMetadata
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 |
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 289 def ( friendly_name: :unset ) data = Twilio::Values.of({ 'FriendlyName' => friendly_name, }) headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) response = @version.('POST', @uri, data: data, headers: headers) key_instance = KeyInstance.new( @version, response.body, account_sid: @solution[:account_sid], sid: @solution[:sid], ) KeyInstanceMetadata.new( @version, key_instance, response.headers, response.status_code ) end |