Class: Twilio::REST::Microvisor::V1::DeviceContext::DeviceConfigInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Microvisor::V1::DeviceContext::DeviceConfigInstance
- Defined in:
- lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb
Instance Method Summary collapse
-
#context ⇒ DeviceConfigContext
Generate an instance context for the instance, the context is capable of performing various actions.
- #date_updated ⇒ Time
-
#delete ⇒ Boolean
Delete the DeviceConfigInstance.
-
#device_sid ⇒ String
A 34-character string that uniquely identifies the parent Device.
-
#fetch ⇒ DeviceConfigInstance
Fetch the DeviceConfigInstance.
-
#initialize(version, payload, device_sid: nil, key: nil) ⇒ DeviceConfigInstance
constructor
Initialize the DeviceConfigInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#key ⇒ String
The config key; up to 100 characters.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(value: nil) ⇒ DeviceConfigInstance
Update the DeviceConfigInstance.
-
#url ⇒ String
The absolute URL of the Config.
-
#value ⇒ String
The config value; up to 4096 characters.
Constructor Details
#initialize(version, payload, device_sid: nil, key: nil) ⇒ DeviceConfigInstance
Initialize the DeviceConfigInstance
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 290 def initialize(version, payload , device_sid: nil, key: nil) super(version) # Marshaled Properties @properties = { 'device_sid' => payload['device_sid'], 'key' => payload['key'], 'value' => payload['value'], 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'url' => payload['url'], } # Context @instance_context = nil @params = { 'device_sid' => device_sid || @properties['device_sid'] ,'key' => key || @properties['key'] , } end |
Instance Method Details
#context ⇒ DeviceConfigContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
311 312 313 314 315 316 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 311 def context unless @instance_context @instance_context = DeviceConfigContext.new(@version , @params['device_sid'], @params['key']) end @instance_context end |
#date_updated ⇒ Time
338 339 340 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 338 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Delete the DeviceConfigInstance
351 352 353 354 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 351 def delete context.delete end |
#device_sid ⇒ String
Returns A 34-character string that uniquely identifies the parent Device.
320 321 322 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 320 def device_sid @properties['device_sid'] end |
#fetch ⇒ DeviceConfigInstance
Fetch the DeviceConfigInstance
359 360 361 362 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 359 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
386 387 388 389 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 386 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Microvisor.V1.DeviceConfigInstance #{values}>" end |
#key ⇒ String
Returns The config key; up to 100 characters.
326 327 328 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 326 def key @properties['key'] end |
#to_s ⇒ Object
Provide a user friendly representation
379 380 381 382 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 379 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Microvisor.V1.DeviceConfigInstance #{values}>" end |
#update(value: nil) ⇒ DeviceConfigInstance
Update the DeviceConfigInstance
368 369 370 371 372 373 374 375 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 368 def update( value: nil ) context.update( value: value, ) end |
#url ⇒ String
Returns The absolute URL of the Config.
344 345 346 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 344 def url @properties['url'] end |
#value ⇒ String
Returns The config value; up to 4096 characters.
332 333 334 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 332 def value @properties['value'] end |