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
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 273 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
294 295 296 297 298 299 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 294 def context unless @instance_context @instance_context = DeviceConfigContext.new(@version , @params['device_sid'], @params['key']) end @instance_context end |
#date_updated ⇒ Time
321 322 323 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 321 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Delete the DeviceConfigInstance
334 335 336 337 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 334 def delete context.delete end |
#device_sid ⇒ String
Returns A 34-character string that uniquely identifies the parent Device.
303 304 305 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 303 def device_sid @properties['device_sid'] end |
#fetch ⇒ DeviceConfigInstance
Fetch the DeviceConfigInstance
342 343 344 345 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 342 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
369 370 371 372 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 369 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.
309 310 311 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 309 def key @properties['key'] end |
#to_s ⇒ Object
Provide a user friendly representation
362 363 364 365 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 362 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Microvisor.V1.DeviceConfigInstance #{values}>" end |
#update(value: nil) ⇒ DeviceConfigInstance
Update the DeviceConfigInstance
351 352 353 354 355 356 357 358 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 351 def update( value: nil ) context.update( value: value, ) end |
#url ⇒ String
Returns The absolute URL of the Config.
327 328 329 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 327 def url @properties['url'] end |
#value ⇒ String
Returns The config value; up to 4096 characters.
315 316 317 |
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 315 def value @properties['value'] end |