Class: Twilio::REST::Api::V2010::AccountContext::KeyInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Api::V2010::AccountContext::KeyInstance
- Defined in:
- lib/twilio-ruby/rest/api/v2010/account/key.rb
Instance Method Summary collapse
-
#context ⇒ KeyContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The date and time in GMT that the resource was created specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
-
#date_updated ⇒ Time
The date and time in GMT that the resource was last updated specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
-
#delete ⇒ Boolean
Delete the KeyInstance.
-
#fetch ⇒ KeyInstance
Fetch the KeyInstance.
-
#friendly_name ⇒ String
The string that you assigned to describe the resource.
-
#initialize(version, payload, account_sid: nil, sid: nil) ⇒ KeyInstance
constructor
Initialize the KeyInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#sid ⇒ String
The unique string that that we created to identify the Key resource.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(friendly_name: :unset) ⇒ KeyInstance
Update the KeyInstance.
Constructor Details
#initialize(version, payload, account_sid: nil, sid: nil) ⇒ KeyInstance
Initialize the KeyInstance
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 |
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 245 def initialize(version, payload , account_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'friendly_name' => payload['friendly_name'], 'date_created' => Twilio.deserialize_rfc2822(payload['date_created']), 'date_updated' => Twilio.deserialize_rfc2822(payload['date_updated']), } # Context @instance_context = nil @params = { 'account_sid' => account_sid ,'sid' => sid || @properties['sid'] , } end |
Instance Method Details
#context ⇒ KeyContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
265 266 267 268 269 270 |
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 265 def context unless @instance_context @instance_context = KeyContext.new(@version , @params['account_sid'], @params['sid']) end @instance_context end |
#date_created ⇒ Time
Returns The date and time in GMT that the resource was created specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
286 287 288 |
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 286 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date and time in GMT that the resource was last updated specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
292 293 294 |
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 292 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Delete the KeyInstance
299 300 301 302 |
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 299 def delete context.delete end |
#fetch ⇒ KeyInstance
Fetch the KeyInstance
307 308 309 310 |
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 307 def fetch context.fetch end |
#friendly_name ⇒ String
Returns The string that you assigned to describe the resource.
280 281 282 |
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 280 def friendly_name @properties['friendly_name'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
334 335 336 337 |
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 334 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Api.V2010.KeyInstance #{values}>" end |
#sid ⇒ String
Returns The unique string that that we created to identify the Key resource.
274 275 276 |
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 274 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
327 328 329 330 |
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 327 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Api.V2010.KeyInstance #{values}>" end |
#update(friendly_name: :unset) ⇒ KeyInstance
Update the KeyInstance
316 317 318 319 320 321 322 323 |
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 316 def update( friendly_name: :unset ) context.update( friendly_name: friendly_name, ) end |