Class: Twilio::REST::Microvisor::V1::AccountConfigInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Microvisor::V1::AccountConfigInstance
- Defined in:
- lib/twilio-ruby/rest/microvisor/v1/account_config.rb
Instance Method Summary collapse
-
#context ⇒ AccountConfigContext
Generate an instance context for the instance, the context is capable of performing various actions.
- #date_updated ⇒ Time
-
#delete ⇒ Boolean
Delete the AccountConfigInstance.
-
#fetch ⇒ AccountConfigInstance
Fetch the AccountConfigInstance.
-
#initialize(version, payload, key: nil) ⇒ AccountConfigInstance
constructor
Initialize the AccountConfigInstance.
-
#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) ⇒ AccountConfigInstance
Update the AccountConfigInstance.
-
#url ⇒ String
The absolute URL of the Config.
-
#value ⇒ String
The config value; up to 4096 characters.
Constructor Details
#initialize(version, payload, key: nil) ⇒ AccountConfigInstance
Initialize the AccountConfigInstance
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 263 def initialize(version, payload , key: nil) super(version) # Marshaled Properties @properties = { 'key' => payload['key'], 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'value' => payload['value'], 'url' => payload['url'], } # Context @instance_context = nil @params = { 'key' => key || @properties['key'] , } end |
Instance Method Details
#context ⇒ AccountConfigContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
283 284 285 286 287 288 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 283 def context unless @instance_context @instance_context = AccountConfigContext.new(@version , @params['key']) end @instance_context end |
#date_updated ⇒ Time
298 299 300 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 298 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Delete the AccountConfigInstance
317 318 319 320 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 317 def delete context.delete end |
#fetch ⇒ AccountConfigInstance
Fetch the AccountConfigInstance
325 326 327 328 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 325 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
352 353 354 355 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 352 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Microvisor.V1.AccountConfigInstance #{values}>" end |
#key ⇒ String
Returns The config key; up to 100 characters.
292 293 294 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 292 def key @properties['key'] end |
#to_s ⇒ Object
Provide a user friendly representation
345 346 347 348 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 345 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Microvisor.V1.AccountConfigInstance #{values}>" end |
#update(value: nil) ⇒ AccountConfigInstance
Update the AccountConfigInstance
334 335 336 337 338 339 340 341 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 334 def update( value: nil ) context.update( value: value, ) end |
#url ⇒ String
Returns The absolute URL of the Config.
310 311 312 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 310 def url @properties['url'] end |
#value ⇒ String
Returns The config value; up to 4096 characters.
304 305 306 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 304 def value @properties['value'] end |